Home | History | Annotate | Download | only in googletest

Lines Matching refs:line_end

456     const size_t line_end = output.find('\n', at);
458 if (line_end == ::std::string::npos) {
462 ret += output.substr(at, line_end + 1 - at);
463 at = line_end + 1;