HomeSort by relevance Sort by last modified time
    Searched defs:value_begin (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/tools/balsa/
balsa_headers_token_utils.cc 20 const char* value_begin = stream_begin + header_line.value_begin_idx; local
24 ParseTokenList(value_begin, line_end, tokens);
balsa_frame.cc 647 const char* value_begin = (stream_begin + header_line.value_begin_idx); local
649 if (value_begin >= line_end) {
659 while (value_begin < line_end) {
660 if (*value_begin < '0' || *value_begin > '9') {
670 const unsigned char c = *value_begin - '0';
680 ++value_begin;
692 const char* value_begin = stream_begin + header_line.value_begin_idx; local
693 size_t value_length = line_end - value_begin;
696 !strncasecmp(value_begin, "chunked", 7))
    [all...]
  /external/chromium_org/net/http/
http_util.h 286 std::string::const_iterator value_begin() const { function in class:net::HttpUtil::ValuesIterator
330 std::string::const_iterator value_begin() const { function in class:net::HttpUtil::NameValuePairsIterator
http_response_headers.cc 130 std::string::const_iterator value_begin; member in struct:net::HttpResponseHeaders::ParsedHeader
488 std::string::const_iterator value_begin = parsed_[i].value_begin; local
494 headers[iter->second].append(value_begin, value_end);
524 std::string::const_iterator value_begin = parsed_[i].value_begin; local
528 value->append(value_begin, value_end);
561 std::string::const_iterator value_begin = parsed_[i].value_begin; local
566 value->assign(value_begin, value_end)
    [all...]

Completed in 138 milliseconds