Searched refs:ShowColors (Results 1 - 25 of 26) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTDumper.h24 const bool ShowColors; member in class:clang::ASTDumper
27 ASTDumper(raw_ostream &OS, const ASTContext &Context, bool ShowColors) argument
28 : NodeDumper(OS, Context, ShowColors), OS(OS), ShowColors(ShowColors) {}
30 ASTDumper(raw_ostream &OS, bool ShowColors) argument
31 : NodeDumper(OS, ShowColors), OS(OS), ShowColors(ShowColors) {}
H A DASTDumperUtils.h88 const bool ShowColors; member in class:clang::ColorScope
91 ColorScope(llvm::raw_ostream &OS, bool ShowColors, TerminalColor Color) argument
92 : OS(OS), ShowColors(ShowColors) {
93 if (ShowColors)
97 if (ShowColors)
H A DTextNodeDumper.h34 const bool ShowColors; member in class:clang::TextTreeStructure
88 ColorScope Color(OS, ShowColors, IndentColor);
122 TextTreeStructure(raw_ostream &OS, bool ShowColors) argument
123 : OS(OS), ShowColors(ShowColors) {}
136 const bool ShowColors; member in class:clang::TextNodeDumper
165 TextNodeDumper(raw_ostream &OS, const ASTContext &Context, bool ShowColors);
166 TextNodeDumper(raw_ostream &OS, bool ShowColors);
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DTextNodeDumper.cpp60 bool ShowColors)
61 : TextTreeStructure(OS, ShowColors), OS(OS), ShowColors(ShowColors),
66 TextNodeDumper::TextNodeDumper(raw_ostream &OS, bool ShowColors) argument
67 : TextTreeStructure(OS, ShowColors), OS(OS), ShowColors(ShowColors) {}
72 ColorScope Color(OS, ShowColors, NullColor);
78 ColorScope Color(OS, ShowColors, CommentColo
59 TextNodeDumper(raw_ostream &OS, const ASTContext &Context, bool ShowColors) argument
[all...]
H A DASTDumper.cpp48 ColorScope Color(OS, ShowColors, DeclNameColor);
77 ColorScope Color(OS, ShowColors, UndeserializedColor);
165 ASTDumper Dumper(llvm::errs(), /*ShowColors=*/false);
207 ASTDumper P(llvm::errs(), Ctx, /*ShowColors=*/true);
232 ASTDumper P(llvm::errs(), /*ShowColors=*/false);
243 ASTDumper P(llvm::errs(), /*ShowColors=*/true);
255 ASTDumper Dumper(llvm::errs(), /*ShowColors=*/false);
272 ASTDumper Dumper(llvm::errs(), /*ShowColors=*/true);
281 ASTDumper Dumper(llvm::errs(), /*ShowColors=*/false);
H A DASTDiagnostic.cpp321 bool ShowColors, raw_ostream &OS);
378 TDT.ShowColors, OS)) {
2083 bool ShowColors, raw_ostream &OS) {
2087 ElideType, ShowColors);
2080 FormatTemplateTypeDiff(ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColors, raw_ostream &OS) argument
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DTextDiagnostic.h53 bool ShowColors);
70 /// \param ShowColors Enable colorizing of the message.
73 unsigned Columns, bool ShowColors);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DSourceMgr.cpp325 bool ShowColors) const {
338 Diagnostic.print(nullptr, OS, ShowColors);
344 bool ShowColors) const {
345 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors);
350 ArrayRef<SMFixIt> FixIts, bool ShowColors) const {
351 PrintMessage(errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); local
473 void SMDiagnostic::print(const char *ProgName, raw_ostream &OS, bool ShowColors, argument
475 ColorMode Mode = ShowColors ? ColorMode::Auto : ColorMode::Disable;
501 WithColor::error(OS, "", !ShowColors);
504 WithColor::warning(OS, "", !ShowColors);
[all...]
H A DYAMLParser.cpp251 Scanner(StringRef Input, SourceMgr &SM, bool ShowColors = true,
253 Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors = true,
264 SM.PrintMessage(Loc, Kind, Message, Ranges, /* FixIts= */ None, ShowColors);
538 bool ShowColors; member in class:llvm::yaml::Scanner
835 Scanner::Scanner(StringRef Input, SourceMgr &sm, bool ShowColors, argument
837 : SM(sm), ShowColors(ShowColors), EC(EC) {
841 Scanner::Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors, argument
843 : SM(SM_), ShowColors(ShowColors), E
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp136 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors);
140 DiagOpts->MessageLength, DiagOpts->ShowColors);
H A DASTConsumers.cpp57 bool ShowColors = Out.has_colors(); local
58 if (ShowColors)
62 if (ShowColors)
H A DTextDiagnostic.cpp683 if (DiagOpts->ShowColors)
687 printDiagnosticLevel(OS, Level, DiagOpts->ShowColors);
691 DiagOpts->MessageLength, DiagOpts->ShowColors);
697 bool ShowColors) {
698 if (ShowColors) {
721 if (ShowColors)
730 unsigned Columns, bool ShowColors) {
732 if (ShowColors && !IsSupplemental) {
747 if (ShowColors)
814 if (DiagOpts->ShowColors)
[all...]
H A DCompilerInvocation.cpp2080 } ShowColors = DefaultColor ? Colors_Auto : Colors_Off;
2085 ShowColors = Colors_On;
2088 ShowColors = Colors_Off;
2092 ShowColors = Colors_On;
2094 ShowColors = Colors_Off;
2096 ShowColors = Colors_Auto;
2099 return ShowColors == Colors_On ||
2100 (ShowColors == Colors_Auto &&
2214 if (Opts.ShowColors)
2293 Opts.ShowColors
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSourceMgr.h187 /// \param ShowColors Display colored messages if output is a terminal and
192 bool ShowColors = true) const;
198 bool ShowColors = true) const;
202 /// \param ShowColors Display colored messages if output is a terminal and
205 bool ShowColors = true) const;
289 void print(const char *ProgName, raw_ostream &S, bool ShowColors = true,
H A DYAMLParser.h89 Stream(StringRef Input, SourceMgr &, bool ShowColors = true,
92 Stream(MemoryBufferRef InputBuffer, SourceMgr &, bool ShowColors = true,
/netbsd-current/external/apache2/llvm/dist/llvm/utils/yaml-bench/
H A DYAMLBench.cpp198 bool ShowColors = UseColor == cl::BOU_UNSET local
214 yaml::Stream stream(Buf.getBuffer(), sm, ShowColors);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp5617 bool ShowColors) {
5621 if (ShowColors)
5637 if (ShowColors)
5696 if (ShowColors)
5708 if (ShowColors)
5716 if (ShowColors)
5719 if (ShowColors)
5724 if (ShowColors)
5744 if (ShowColors)
5753 if (ShowColors)
5614 print_block(raw_ostream &OS, const CFG* cfg, const CFGBlock &B, StmtPrinterHelper &Helper, bool print_edges, bool ShowColors) argument
5796 print(llvm::errs(), LO, ShowColors); local
5828 print(llvm::errs(), cfg, LO, ShowColors); local
[all...]
H A DAnalysisDeclContext.cpp275 void AnalysisDeclContext::dumpCFG(bool ShowColors) { argument
276 getCFG()->dump(getASTContext().getLangOpts(), ShowColors);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnostic.h271 bool ShowColors = false; member in class:clang::DiagnosticsEngine
705 void setShowColors(bool Val) { ShowColors = Val; }
706 bool getShowColors() { return ShowColors; }
1795 unsigned ShowColors : 1;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Basic/
H A DWarnings.cpp53 Diags.setShowColors(Opts.ShowColors);
H A DDiagnostic.cpp1020 TDT.ShowColors = getDiags()->ShowColors;
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-format/
H A DClangFormat.cpp165 ShowColors("fcolor-diagnostics",
329 Diag.print(nullptr, llvm::errs(), (ShowColors && !NoShowColors));
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h161 void dumpCFG(bool ShowColors);
H A DCFG.h1080 void dump(const CFG *cfg, const LangOptions &LO, bool ShowColors = false) const;
1082 bool ShowColors) const;
1424 void print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const;
1425 void dump(const LangOptions &LO, bool ShowColors) const;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp163 SMRange Range, bool ShowColors = true);
6148 SMRange Range, bool ShowColors) {
6151 ShowColors);
6147 printWarningWithFixIt(const Twine &Msg, const Twine &FixMsg, SMRange Range, bool ShowColors) argument

Completed in 217 milliseconds

12