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

/external/chromium_org/rlz/win/lib/
H A Dmachine_deal.cc83 int line_begin = *search_index; local
84 const char* line_end = strchr(response_text + line_begin, '\n');
93 response_line->assign(response_text + line_begin,
94 line_end - response_text - line_begin);
/external/chromium_org/net/tools/balsa/
H A Dbalsa_frame.cc477 // 'line_begin' points to the first character of the line.
480 // 'line_begin' points to the position of first character of line.
483 const char* line_begin,
492 << "\"" << std::string(line_begin, line_end) << "\"";
497 while (current > line_begin && *current <= ' ') --current;
532 const char* line_begin = stream_begin + lines_[i].first; local
549 DCHECK_LT(line_begin - stream_begin, line_end - stream_begin);
555 // We're guaranteed to have *line_end > ' ' while line_end >= line_begin.
558 << "\"" << std::string(line_begin, line_end) << "\"";
559 while (*line_end <= ' ' && line_end > line_begin) {
481 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.h153 const char* line_begin,
/external/chromium_org/net/websockets/
H A Dwebsocket_handshake_handler.cc68 bool GetHeaderName(std::string::const_iterator line_begin, argument
72 std::string::const_iterator colon = std::find(line_begin, line_end, ':');
76 *name_begin = line_begin;
94 std::string::const_iterator line_begin = lines.token_begin(); local
99 if (GetHeaderName(line_begin, line_end, &name_begin, &name_end)) {
108 filtered_headers.append(line_begin, line_end);
/external/chromium_org/net/http/
H A Dhttp_response_headers.h305 // with line_begin and end pointing at the begin and end of this line. If the
307 static HttpVersion ParseVersion(std::string::const_iterator line_begin,
314 // with line_begin and end pointing at the begin and end of this line.
316 void ParseStatusLine(std::string::const_iterator line_begin,
H A Dhttp_util.cc609 const char* line_begin = lines.token_begin(); local
612 if (prev_line_continuable && IsLWS(*line_begin)) {
615 raw_headers.append(FindFirstNonLWS(line_begin, line_end), line_end);
621 raw_headers.append(line_begin, line_end);
624 prev_line_continuable = IsLineSegmentContinuable(line_begin, line_end);
H A Dhttp_response_headers.cc402 std::string::const_iterator line_begin = raw_input.begin(); local
404 std::find(line_begin, raw_input.end(), '\0');
410 ParseStatusLine(line_begin, line_end, has_headers);
627 std::string::const_iterator line_begin,
629 std::string::const_iterator p = line_begin;
670 std::string::const_iterator line_begin,
674 parsed_http_version_ = ParseVersion(line_begin, line_end);
694 std::string::const_iterator p = std::find(line_begin, line_end, ' ');
626 ParseVersion( std::string::const_iterator line_begin, std::string::const_iterator line_end) argument
669 ParseStatusLine( std::string::const_iterator line_begin, std::string::const_iterator line_end, bool has_headers) argument
/external/chromium_org/rlz/lib/
H A Drlz_lib.cc524 int line_begin = line_end_index + 1; local
525 line_end_index = response_string.find("\n", line_begin);
531 if (line_end <= line_begin)
535 response_line = response_string.substr(line_begin, line_end - line_begin);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dwebrtcsdp.cc435 size_t line_begin = *pos; local
436 size_t line_end = message.find(kNewLine, line_begin);
445 *line = message.substr(line_begin, (line_end - line_begin));
457 *pos = line_begin;

Completed in 209 milliseconds