Searched refs:newline_pos (Results 1 – 2 of 2) sorted by relevance
729 int newline_pos = val.find('\n'); in PrintString() local730 while (newline_pos != std::string::npos) { in PrintString()733 val.substr(last_pos, newline_pos + 1 - last_pos), generator); in PrintString()734 last_pos = newline_pos + 1; in PrintString()735 newline_pos = val.find('\n', last_pos); in PrintString()
845 size_t newline_pos = fullOutput.find("\n", endPos); in PrintTestOutputSnippet() local846 if (newline_pos != std::string::npos) in PrintTestOutputSnippet()847 endPos = newline_pos + 1; in PrintTestOutputSnippet()