HomeSort by relevance Sort by last modified time
    Searched refs:value_start (Results 1 - 6 of 6) 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 90 // returns as output arguments value_start and value_end to the start and end
95 std::string::const_iterator* value_start,
  /external/chromium_org/net/base/
sdch_manager.cc 547 size_t value_start = dictionary_text.find_first_not_of(" \t", local
549 if (std::string::npos != value_start) {
550 if (value_start >= line_end)
553 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...]
  /external/chromium_org/net/spdy/
spdy_framer.cc 44 size_t value_start = pos + 1; local
45 for (; value_start < cookie.size(); value_start++) {
46 if (!(cookie[value_start] == ' ' || cookie[value_start] == '\t')) {
50 return (pos == 0) && ((cookie.size() - value_start) == 0);
    [all...]

Completed in 251 milliseconds