Lines Matching defs:output
36 " -o FILE write output dependency information to FILE.d\n"
37 " -p STRING localized prefix of msvc's /showIncludes output\n"
128 string output;
129 int exit_code = cl.Run(command, &output);
134 if (!parser.Parse(output, deps_prefix, &output, &err))
139 if (output.empty())
142 // CLWrapper's output already as \r\n line endings, make sure the C runtime
145 // Avoid printf and C strings, since the actual output might contain null
147 fwrite(&output[0], 1, output.size(), stdout);