Home | History | Annotate | Download | only in base

Lines Matching refs:end_of_line

543     const unsigned char* end_of_line = strchrn<unsigned char>(udata,
546 if (!end_of_line) {
547 udata = end_of_line = end;
549 udata = end_of_line + 1;
557 if (consecutive_unprintable && ((end_of_line - line) < kMinPrintableLine)) {
563 for (const unsigned char* pos = line; pos < end_of_line; ++pos) {
589 while ((end_of_line > line) && isspace(*(end_of_line-1))) {
590 --end_of_line;
593 std::string substr(reinterpret_cast<const char*>(line), end_of_line - line);