Home | History | Annotate | Download | only in target

Lines Matching refs:string

31 using std::string;
58 static map<string, string> ExtractParams(const char *test_params) {
59 map<string, string> params;
60 string input(test_params);
63 string key_value;
66 if (delim == string::npos) {
71 string key = key_value.substr(0, delim);
72 string value = key_value.substr(delim + 1);