HomeSort by relevance Sort by last modified time
    Searched defs:line_begin (Results 1 - 10 of 10) 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/net/websockets/
websocket_handshake_handler.cc 57 bool GetHeaderName(std::string::const_iterator line_begin,
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_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/net/http/
http_util.cc 547 const char* line_begin = lines.token_begin(); local
550 if (prev_line_continuable && IsLWS(*line_begin)) {
553 raw_headers.append(FindFirstNonLWS(line_begin, line_end), line_end);
559 raw_headers.append(line_begin, line_end);
562 prev_line_continuable = IsLineSegmentContinuable(line_begin, line_end);
http_response_headers.cc 330 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, ' ');
    [all...]
  /external/chromium_org/net/websockets/
websocket_handshake_handler.cc 71 bool GetHeaderName(std::string::const_iterator line_begin,
75 std::string::const_iterator colon = std::find(line_begin, line_end, ':');
79 *name_begin = line_begin;
97 std::string::const_iterator line_begin = lines.token_begin(); local
102 if (GetHeaderName(line_begin, line_end, &name_begin, &name_end)) {
111 filtered_headers.append(line_begin, line_end);
  /external/chromium/net/tools/flip_server/
balsa_frame.cc 456 // '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) {
    [all...]
  /external/chromium_org/net/tools/flip_server/
balsa_frame.cc 456 // '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) {
    [all...]
  /external/chromium_org/net/http/
http_response_headers.cc 371 std::string::const_iterator line_begin = raw_input.begin(); local
373 std::find(line_begin, raw_input.end(), '\0');
379 ParseStatusLine(line_begin, line_end, has_headers);
596 std::string::const_iterator line_begin,
598 std::string::const_iterator p = line_begin;
639 std::string::const_iterator line_begin,
643 parsed_http_version_ = ParseVersion(line_begin, line_end);
663 std::string::const_iterator p = std::find(line_begin, line_end, ' ');
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 427 size_t line_begin = *pos; local
428 size_t line_end = message.find(kNewLine, line_begin);
437 *line = message.substr(line_begin, (line_end - line_begin));
449 *pos = line_begin;
    [all...]

Completed in 248 milliseconds