Home | History | Annotate | Download | only in flip_server

Lines Matching defs:line_begin

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;
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) {
544 DCHECK_LT(line_begin, line_end);
550 HeaderLineDescription(line_begin - stream_begin,
561 } else if (current < line_begin) {
566 current = line_begin;
613 line_begin,