HomeSort by relevance Sort by last modified time
    Searched defs:line_end (Results 26 - 40 of 40) sorted by null

12

  /external/chromium/net/http/
http_response_headers.cc 331 std::string::const_iterator line_end = local
335 bool has_headers = (line_end != raw_input.end() &&
336 (line_end + 1) != raw_input.end() &&
337 *(line_end + 1) != '\0');
338 ParseStatusLine(line_begin, line_end, has_headers);
340 if (line_end == raw_input.end()) {
350 raw_headers_.append(line_end + 1, raw_input.end());
353 line_end = raw_headers_.begin() + status_line_len - 1;
355 HttpUtil::HeadersIterator headers(line_end + 1, raw_headers_.end(),
536 // Note: this implementation implicitly assumes that line_end points at a vali
    [all...]
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 456 const size_t line_end = output.find('\n', at); local
458 if (line_end == ::std::string::npos) {
462 ret += output.substr(at, line_end + 1 - at);
463 at = line_end + 1;
    [all...]
  /external/chromium_org/net/http/
http_response_headers.cc 380 std::string::const_iterator line_end = local
384 bool has_headers = (line_end != raw_input.end() &&
385 (line_end + 1) != raw_input.end() &&
386 *(line_end + 1) != '\0');
387 ParseStatusLine(line_begin, line_end, has_headers);
390 if (line_end == raw_input.end()) {
403 raw_headers_.append(line_end + 1, raw_input.end());
413 line_end = raw_headers_.begin() + status_line_len - 1;
415 HttpUtil::HeadersIterator headers(line_end + 1, raw_headers_.end(),
600 // Note: this implementation implicitly assumes that line_end points at a vali
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-death-test.cc 496 const size_t line_end = output.find('\n', at); local
498 if (line_end == ::std::string::npos) {
502 ret += output.substr(at, line_end + 1 - at);
503 at = line_end + 1;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 456 const size_t line_end = output.find('\n', at); local
458 if (line_end == ::std::string::npos) {
462 ret += output.substr(at, line_end + 1 - at);
463 at = line_end + 1;
    [all...]
  /external/gtest/src/
gtest-death-test.cc 456 const size_t line_end = output.find('\n', at); local
458 if (line_end == ::std::string::npos) {
462 ret += output.substr(at, line_end + 1 - at);
463 at = line_end + 1;
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 456 const size_t line_end = output.find('\n', at); local
458 if (line_end == ::std::string::npos) {
462 ret += output.substr(at, line_end + 1 - at);
463 at = line_end + 1;
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 456 const size_t line_end = output.find('\n', at); local
458 if (line_end == ::std::string::npos) {
462 ret += output.substr(at, line_end + 1 - at);
463 at = line_end + 1;
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 1117 char *config, *end, *pos, *line_end; local
1131 for (pos = config; pos < end; pos = line_end + 1) {
1132 line_end = pos;
1133 while (*line_end != '\n' && *line_end != '\r' &&
1134 line_end < end)
1135 line_end++;
1136 *line_end = '\0';
1141 imc = tncc_parse_imc(pos + 4, line_end, &error);
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 1087 char *config, *end, *pos, *line_end; local
1102 for (pos = config; pos < end; pos = line_end + 1) {
1103 line_end = pos;
1104 while (*line_end != '\n' && *line_end != '\r' &&
1105 line_end < end)
1106 line_end++;
1107 *line_end = '\0';
1112 imv = tncs_parse_imv(id++, pos + 4, line_end, &error);
  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 496 const size_t line_end = output.find('\n', at); local
498 if (line_end == ::std::string::npos) {
502 ret += output.substr(at, line_end + 1 - at);
503 at = line_end + 1;
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 1226 const char* line_end = flagfile_contents; local
    [all...]
  /external/open-vcdiff/gflags/src/
gflags.cc 1226 const char* line_end = flagfile_contents; local
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 561 CvPoint line_end[2] = {{0,0}, {0,0}}; local
653 line_end[k].y = i1;
654 line_end[k].x = j1;
661 good_line = abs(line_end[1].x - line_end[0].x) >= lineLength ||
662 abs(line_end[1].y - line_end[0].y) >= lineLength;
710 if( i1 == line_end[k].y && j1 == line_end[k].x )
717 CvRect lr = { line_end[0].x, line_end[0].y, line_end[1].x, line_end[1].y }
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 345 size_t line_end = message.find(kNewLine, line_start); local
346 if (line_end != std::string::npos) {
347 if (line_end > 0 && (message.at(line_end - 1) == kReturn)) {
348 --line_end;
350 first_line = message.substr(line_start, (line_end - line_start));
436 size_t line_end = message.find(kNewLine, line_begin); local
437 if (line_end == std::string::npos) {
441 *pos = line_end + 1;
442 if (line_end > 0 && (message.at(line_end - 1) == kReturn))
    [all...]

Completed in 1465 milliseconds

12