| 79 | } |
| 80 | |
| 81 | vector<Origin::Function>::difference_type OriginParser::findFunctionByName(const string &name) const |
| 82 | { |
| 83 | for (vector<Function>::const_iterator it = functions.begin(); it != functions.end(); ++it) { |
| 84 | if (iequals(it->name, name, locale())) |
| 85 | return it - functions.begin(); |
| 86 | } |
| 87 | return -1; |
| 88 | } |
| 89 | |
| 90 | pair<string, string> OriginParser::findDataByIndex(unsigned int index) const |
| 91 | { |
no test coverage detected