Home
last modified time | relevance | path

Searched refs:equals_pos (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/cmds/installd/
Dsystem_properties.h34 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()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dcode_generator.cc70 string::size_type equals_pos = parts[i].find_first_of('='); in ParseGeneratorParameter() local
72 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()
Dcommand_line_interface.cc1047 const char* equals_pos = strchr(arg, '='); in ParseArgument() local
1048 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() local
1125 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() local
1265 if (equals_pos == string::npos) { in InterpretArgument()
[all …]