Home | History | Annotate | Download | only in src

Lines Matching refs:line_end

505     const size_t line_end = output.find('\n', at);
507 if (line_end == ::std::string::npos) {
511 ret += output.substr(at, line_end + 1 - at);
512 at = line_end + 1;