/external/chromium_org/base/debug/ |
trace_event_android.cc | 41 std::string::size_type value_start = out.length(); local 49 ReplaceSubstringsAfterOffset(&out, value_start, "\\\"", "'"); 50 ReplaceSubstringsAfterOffset(&out, value_start, "\"", ""); 52 std::replace(out.begin() + value_start, out.end(), ';', ','); 53 std::replace(out.begin() + value_start, out.end(), '|', '!');
|
/external/chromium/net/base/ |
sdch_manager.cc | 403 size_t value_start = dictionary_text.find_first_not_of(" \t", local 405 if (std::string::npos != value_start) { 406 if (value_start >= line_end) 409 std::string value(dictionary_text, value_start, line_end - value_start);
|
/external/chromium_org/net/base/ |
sdch_manager.cc | 415 size_t value_start = dictionary_text.find_first_not_of(" \t", local 417 if (std::string::npos != value_start) { 418 if (value_start >= line_end) 421 std::string value(dictionary_text, value_start, line_end - value_start);
|
/external/chromium_org/net/cookies/ |
parsed_cookie.cc | 299 std::string::const_iterator* value_start, 301 DCHECK(it && value_start && value_end); 305 // value_start should point at the first character of the value. 306 *value_start = *it; 316 if (*value_end != *value_start) { // Could have an empty value 318 SeekBackPast(value_end, *value_start, kWhitespace); 337 std::string::const_iterator value_start, value_end; local 338 ParseValue(&it, end, &value_start, &value_end); 339 return std::string(value_start, value_end); 386 std::string::const_iterator value_start, value_end local [all...] |
/frameworks/av/media/libmediaplayerservice/ |
StagefrightRecorder.cpp | 710 const char *value_start = equal_pos + 1; local 711 const char *semicolon_pos = strchr(value_start, ';'); 714 value.setTo(value_start); 716 value.setTo(value_start, semicolon_pos - value_start); [all...] |