Searched refs:line_begin (Results 1 - 5 of 5) sorted by relevance

/external/chromium/net/websockets/
H A Dwebsocket_handshake_handler.cc57 bool GetHeaderName(std::string::const_iterator line_begin, argument
61 std::string::const_iterator colon = std::find(line_begin, line_end, ':');
65 *name_begin = line_begin;
83 std::string::const_iterator line_begin = lines.token_begin(); local
88 if (GetHeaderName(line_begin, line_end, &name_begin, &name_end)) {
97 filtered_headers.append(line_begin, line_end);
/external/chromium/net/tools/flip_server/
H A Dbalsa_frame.cc456 // 'line_begin' points to the first character of the line.
459 // 'line_begin' points to the position of first character of line.
462 const char* line_begin,
471 << "\"" << std::string(line_begin, line_end) << "\"";
476 while (current > line_begin && *current <= ' ') --current;
512 const char* line_begin = stream_begin + lines_[i].first; local
529 DCHECK_LT(line_begin - stream_begin, line_end - stream_begin);
535 // We're guaranteed to have *line_end > ' ' while line_end >= line_begin.
538 << "\"" << std::string(line_begin, line_end) << "\"";
539 while (*line_end <= ' ' && line_end > line_begin) {
460 CleanUpKeyValueWhitespace( const char* stream_begin, const char* line_begin, const char* current, const char* line_end, HeaderLineDescription* current_header_line) argument
[all...]
H A Dbalsa_frame.h155 const char* line_begin,
/external/chromium/net/http/
H A Dhttp_response_headers.cc330 std::string::const_iterator line_begin = raw_input.begin(); local
332 find(line_begin, raw_input.end(), '\0');
338 ParseStatusLine(line_begin, line_end, has_headers);
540 std::string::const_iterator line_begin,
542 std::string::const_iterator p = line_begin;
583 std::string::const_iterator line_begin,
587 parsed_http_version_ = ParseVersion(line_begin, line_end);
607 std::string::const_iterator p = find(line_begin, line_end, ' ');
539 ParseVersion( std::string::const_iterator line_begin, std::string::const_iterator line_end) argument
582 ParseStatusLine( std::string::const_iterator line_begin, std::string::const_iterator line_end, bool has_headers) argument
H A Dhttp_response_headers.h267 // with line_begin and end pointing at the begin and end of this line. If the
269 static HttpVersion ParseVersion(std::string::const_iterator line_begin,
276 // with line_begin and end pointing at the begin and end of this line.
278 void ParseStatusLine(std::string::const_iterator line_begin,

Completed in 93 milliseconds