Lines Matching defs:output
80 bool CLParser::Parse(const string& output, const string& deps_prefix,
84 // Loop over all lines in the output to process them.
85 assert(&output != filtered_output);
92 while (start < output.size()) {
93 size_t end = output.find_first_of("\r\n", start);
95 end = output.size();
96 string line = output.substr(start, end - start);
115 // TODO: if we support compiling multiple output files in a single
122 if (end < output.size() && output[end] == '\r')
124 if (end < output.size() && output[end] == '\n')