Home | History | Annotate | Download | only in src

Lines Matching refs:line_end

459     const size_t line_end = output.find('\n', at);
461 if (line_end == ::std::string::npos) {
465 ret += output.substr(at, line_end + 1 - at);
466 at = line_end + 1;