Searched refs:eq_pos (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/chromeos/system/ |
D | name_value_pairs_parser.cc | 78 size_t eq_pos = pair.find(eq); in ParseNameValuePairsWithComments() local 79 if (eq_pos != std::string::npos) { in ParseNameValuePairsWithComments() 85 size_t comment_pos = pair.find(comment_delim, eq_pos + 1); in ParseNameValuePairsWithComments() 87 value_size = comment_pos - eq_pos - 1; in ParseNameValuePairsWithComments() 93 base::TrimString(pair.substr(0, eq_pos), kTrimChars, &key); in ParseNameValuePairsWithComments() 94 base::TrimString(pair.substr(eq_pos + 1, value_size), kTrimChars, &value); in ParseNameValuePairsWithComments()
|
/external/valgrind/main/coregrind/ |
D | vgdb.c | 1279 const char *eq_pos = strchr(arg, '='); in numeric_val() local 1283 if (eq_pos == NULL) in numeric_val() 1286 long_value = strtoll(eq_pos+1, &wrong, 10); in numeric_val()
|