Lines Matching refs:Out
26 CmdLineOption::dumpToStream(llvm::raw_ostream &Out) const { in dumpToStream()
29 Out << OptionName << " (" << OptionType << ", " in dumpToStream()
48 LLVM_DUMP_METHOD void CheckerInfo::dumpToStream(llvm::raw_ostream &Out) const { in dumpToStream()
51 Out << FullName << " (" << toString(State) << (IsHidden ? ", hidden" : "") in dumpToStream()
53 Out << " Options:\n"; in dumpToStream()
55 Out << " "; in dumpToStream()
56 Option.dumpToStream(Out); in dumpToStream()
57 Out << '\n'; in dumpToStream()
59 Out << " Dependencies:\n"; in dumpToStream()
61 Out << " " << Dependency->FullName << '\n'; in dumpToStream()
63 Out << " Weak dependencies:\n"; in dumpToStream()
65 Out << " " << Dependency->FullName << '\n'; in dumpToStream()
71 LLVM_DUMP_METHOD void PackageInfo::dumpToStream(llvm::raw_ostream &Out) const { in dumpToStream()
72 Out << FullName << "\n"; in dumpToStream()
73 Out << " Options:\n"; in dumpToStream()
75 Out << " "; in dumpToStream()
76 Option.dumpToStream(Out); in dumpToStream()
77 Out << '\n'; in dumpToStream()
123 const AnalyzerOptions &AnOpts, raw_ostream &Out, in printCheckerWithDescList() argument
127 Out << "CHECKERS:\n"; in printCheckerWithDescList()
141 auto Print = [=](llvm::raw_ostream &Out, const CheckerInfo &Checker, in printCheckerWithDescList()
143 AnalyzerOptions::printFormattedEntry(Out, {Checker.FullName, Description}, in printCheckerWithDescList()
145 Out << '\n'; in printCheckerWithDescList()
157 Print(Out, Checker, Checker.Desc); in printCheckerWithDescList()
163 Print(Out, Checker, in printCheckerWithDescList()
169 Print(Out, Checker, Checker.Desc); in printCheckerWithDescList()
173 void CheckerRegistryData::printEnabledCheckerList(raw_ostream &Out) const { in printEnabledCheckerList()
175 Out << i->FullName << '\n'; in printEnabledCheckerList()
179 raw_ostream &Out) const { in printCheckerOptionList()
180 Out << "OVERVIEW: Clang Static Analyzer Checker and Package Option List\n\n"; in printCheckerOptionList()
181 Out << "USAGE: -analyzer-config <OPTION1=VALUE,OPTION2=VALUE,...>\n\n"; in printCheckerOptionList()
182 Out << " -analyzer-config OPTION1=VALUE, -analyzer-config " in printCheckerOptionList()
184 Out << "OPTIONS:\n\n"; in printCheckerOptionList()
202 auto Print = [](llvm::raw_ostream &Out, StringRef FullOption, in printCheckerOptionList()
204 AnalyzerOptions::printFormattedEntry(Out, {FullOption, Desc}, in printCheckerOptionList()
208 Out << "\n\n"; in printCheckerOptionList()
226 Print(Out, FullOption, Desc); in printCheckerOptionList()
233 Print(Out, FullOption, in printCheckerOptionList()
239 Print(Out, FullOption, Desc); in printCheckerOptionList()