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

  /external/chromium_org/rlz/win/lib/
machine_deal.cc 83 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/rlz/lib/
rlz_lib.cc 524 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/net/websockets/
websocket_handshake_handler.cc 68 bool GetHeaderName(std::string::const_iterator line_begin,
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/
http_util.cc 596 const char* line_begin = lines.token_begin(); local
599 if (prev_line_continuable && IsLWS(*line_begin)) {
602 raw_headers.append(FindFirstNonLWS(line_begin, line_end), line_end);
608 raw_headers.append(line_begin, line_end);
611 prev_line_continuable = IsLineSegmentContinuable(line_begin, line_end);
http_response_headers.cc 402 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, ' ');
    [all...]
  /external/chromium_org/net/tools/balsa/
balsa_frame.cc 462 // 'line_begin' points to the first character of the line.
465 // 'line_begin' points to the position of first character of line.
468 const char* line_begin,
477 << "\"" << std::string(line_begin, line_end) << "\"";
482 while (current > line_begin && *current <= ' ') --current;
518 const char* line_begin = stream_begin + lines_[i].first; local
535 DCHECK_LT(line_begin - stream_begin, line_end - stream_begin);
541 // We're guaranteed to have *line_end > ' ' while line_end >= line_begin.
544 << "\"" << std::string(line_begin, line_end) << "\"";
545 while (*line_end <= ' ' && line_end > line_begin) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 433 size_t line_begin = *pos; local
434 size_t line_end = message.find(kNewLine, line_begin);
443 *line = message.substr(line_begin, (line_end - line_begin));
455 *pos = line_begin;
    [all...]

Completed in 256 milliseconds