Searched refs:equals_pos (Results 1 – 3 of 3) sorted by relevance
34 size_t equals_pos = line.find('='); in Load()35 if (equals_pos == std::string::npos || equals_pos == 0) { in Load()40 std::string key = line.substr(0, equals_pos); in Load()41 std::string value = line.substr(equals_pos + 1, in Load()42 line.length() - equals_pos + 1); in Load()
70 string::size_type equals_pos = parts[i].find_first_of('='); in ParseGeneratorParameter() local72 if (equals_pos == string::npos) { in ParseGeneratorParameter()76 value.first = parts[i].substr(0, equals_pos); in ParseGeneratorParameter()77 value.second = parts[i].substr(equals_pos + 1); in ParseGeneratorParameter()
1047 const char* equals_pos = strchr(arg, '='); in ParseArgument() local1048 if (equals_pos != NULL) { in ParseArgument()1049 *name = string(arg, equals_pos - arg); in ParseArgument()1050 *value = equals_pos + 1; in ParseArgument()1124 string::size_type equals_pos = parts[i].find_first_of('='); in InterpretArgument() local1125 if (equals_pos == string::npos) { in InterpretArgument()1129 virtual_path = parts[i].substr(0, equals_pos); in InterpretArgument()1130 disk_path = parts[i].substr(equals_pos + 1); in InterpretArgument()1264 string::size_type equals_pos = value.find_first_of('='); in InterpretArgument() local1265 if (equals_pos == string::npos) { in InterpretArgument()[all …]