HomeSort by relevance Sort by last modified time
    Searched full:value_start (Results 1 - 5 of 5) sorted by null

  /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_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...]
parsed_cookie.h 88 // returns as output arguments value_start and value_end to the start and end
93 std::string::const_iterator* value_start,
  /external/chromium_org/net/base/
sdch_manager.cc 421 size_t value_start = dictionary_text.find_first_not_of(" \t", local
423 if (std::string::npos != value_start) {
424 if (value_start >= line_end)
427 std::string value(dictionary_text, value_start, line_end - value_start);
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 718 const char *value_start = equal_pos + 1; local
719 const char *semicolon_pos = strchr(value_start, ';');
722 value.setTo(value_start);
724 value.setTo(value_start, semicolon_pos - value_start);
    [all...]

Completed in 3891 milliseconds