/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/net/http/ |
http_response_headers.h | 267 // 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,
|
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/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...] |
balsa_frame.h | 155 const char* line_begin,
|
/external/chromium_org/net/tools/balsa/ |
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...] |
balsa_frame.h | 155 const char* 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_response_headers.h | 313 // with line_begin and end pointing at the begin and end of this line. If the 315 static HttpVersion ParseVersion(std::string::const_iterator line_begin, 322 // with line_begin and end pointing at the begin and end of this line. 324 void ParseStatusLine(std::string::const_iterator line_begin,
|
http_util.cc | 610 const char* line_begin = lines.token_begin(); 613 if (prev_line_continuable && IsLWS(*line_begin)) { 616 raw_headers.append(FindFirstNonLWS(line_begin, line_end), line_end); 622 raw_headers.append(line_begin, line_end); 625 prev_line_continuable = IsLineSegmentContinuable(line_begin, line_end);
|
http_response_headers.cc | 379 std::string::const_iterator line_begin = raw_input.begin(); local 381 std::find(line_begin, raw_input.end(), '\0'); 387 ParseStatusLine(line_begin, line_end, has_headers); 604 std::string::const_iterator line_begin, 606 std::string::const_iterator p = line_begin; 647 std::string::const_iterator line_begin, 651 parsed_http_version_ = ParseVersion(line_begin, line_end); 671 std::string::const_iterator p = std::find(line_begin, line_end, ' '); [all...] |
/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/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsdp.cc | 435 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; [all...] |