Home | History | Annotate | Download | only in base

Lines Matching refs:end_of_line

549     const unsigned char* end_of_line = strchrn<unsigned char>(udata,
552 if (!end_of_line) {
553 udata = end_of_line = end;
555 udata = end_of_line + 1;
563 if (consecutive_unprintable && ((end_of_line - line) < kMinPrintableLine)) {
569 for (const unsigned char* pos = line; pos < end_of_line; ++pos) {
595 while ((end_of_line > line) && isspace(*(end_of_line-1))) {
596 --end_of_line;
599 std::string substr(reinterpret_cast<const char*>(line), end_of_line - line);