Home | History | Annotate | Download | only in gn

Lines Matching defs:out

333     // Action, print out outputs, don't apply sources to it.
386 void OutputSourceOfDep(const ParseNode* origin, std::ostream& out) {
390 out << " (Added by " + location.file()->name().value() << ":"
394 // Templatized writer for writing out different config value types.
397 void operator()(const std::string& str, std::ostream& out) const {
398 out << " " << str << "\n";
402 void operator()(const SourceDir& dir, std::ostream& out) const {
403 out << " " << FormatSourceDir(dir) << "\n";
416 std::ostringstream out;
427 out << " From " << config->label().GetUserVisibleName(false) << "\n";
428 OutputSourceOfDep(iter.origin(), out);
431 out << " From " << target->label().GetUserVisibleName(false) << "\n";
436 ConfigValuesToStream(iter.cur(), getter, writer, out);
439 std::string out_str = out.str();
532 " complicated to figure out the blame (patches welcome).\n"
542 " gn desc out/Debug //base:base\n"
545 " gn desc out/Foo :base_unittests deps --tree\n"
549 " gn desc out/Debug //base defines --blame\n"