Home | History | Annotate | Download | only in gn

Lines Matching defs:out

311 void OutputSourceOfDep(const ParseNode* origin, std::ostream& out) {
315 out << " (Added by " + location.file()->name().value() << ":"
319 // Templatized writer for writing out different config value types.
322 void operator()(const std::string& str, std::ostream& out) const {
323 out << " " << str << "\n";
327 void operator()(const SourceDir& dir, std::ostream& out) const {
328 out << " " << FormatSourceDir(dir) << "\n";
341 std::ostringstream out;
352 out << " From " << config->label().GetUserVisibleName(false) << "\n";
353 OutputSourceOfDep(iter.origin(), out);
356 out << " From " << target->label().GetUserVisibleName(false) << "\n";
361 ConfigValuesToStream(iter.cur(), getter, writer, out);
364 std::string out_str = out.str();
442 " complicated to figure out the blame (patches welcome).\n"