Lines Matching defs:out
26 static bool hasColors(const llvm::raw_ostream &out) {
27 if (&out != &llvm::errs() && &out != &llvm::outs())
34 llvm::raw_ostream &out;
38 TreePrinter(llvm::raw_ostream &out)
39 : out(out), ShowColors(hasColors(out)), FlagsOnly(false) {}
43 out << llvm::sys::Process::OutputColor(Color, false, false);
48 out << llvm::sys::Process::ResetColor();
59 out.indent(Indent * 2);
62 out << "-W" << Group.getName() << "\n";
78 out.indent(Indent * 2);
79 out << I->getName();
81 out << "\n";
133 out << '\n';
135 out << "GREEN";
137 out << " = enabled by default\n\n";
146 int TreeView::run(unsigned int argc, char **argv, llvm::raw_ostream &out) {
178 TreePrinter TP(out);