/external/clang/tools/diagtool/ |
TreeView.cpp | 35 const bool ShowColors; 39 : out(out), ShowColors(hasColors(out)), FlagsOnly(false) {} 42 if (ShowColors) 47 if (ShowColors) 76 if (ShowColors && !isIgnored(I->DiagID)) 132 if (ShowColors) {
|
/external/llvm/lib/Support/ |
SourceMgr.cpp | 206 bool ShowColors) const { 219 Diagnostic.print(nullptr, OS, ShowColors); 225 ArrayRef<SMFixIt> FixIts, bool ShowColors) const { 226 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors); 231 ArrayRef<SMFixIt> FixIts, bool ShowColors) const { 232 PrintMessage(llvm::errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); 343 bool ShowColors) const { 345 ShowColors &= S.has_colors(); 347 if (ShowColors) 369 if (ShowColors) [all...] |
/external/clang/include/clang/Frontend/ |
TextDiagnostic.h | 54 bool ShowColors, 72 /// \param ShowColors Enable colorizing of the message. 75 unsigned Columns, bool ShowColors);
|
/external/clang/lib/Frontend/ |
TextDiagnosticPrinter.cpp | 139 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors, 144 DiagOpts->ShowColors);
|
TextDiagnostic.cpp | 687 if (DiagOpts->ShowColors) 690 printDiagnosticLevel(OS, Level, DiagOpts->ShowColors, 695 DiagOpts->MessageLength, DiagOpts->ShowColors); 701 bool ShowColors, 703 if (ShowColors) { 735 if (ShowColors) 744 unsigned Columns, bool ShowColors) { 746 if (ShowColors && !IsSupplemental) { 761 if (ShowColors) 795 if (DiagOpts->ShowColors) [all...] |
ASTConsumers.cpp | 57 bool ShowColors = Out.has_colors(); 58 if (ShowColors) 61 if (ShowColors)
|
CompilerInvocation.cpp | 611 Opts.ShowColors = Args.hasArg(OPT_fcolor_diagnostics); [all...] |
/external/llvm/include/llvm/Support/ |
SourceMgr.h | 153 /// \param ShowColors Display colored messages if output is a terminal and 159 bool ShowColors = true) const; 165 bool ShowColors = true) const; 169 /// \param ShowColors Display colored messages if output is a terminal and 172 bool ShowColors = true) const; 274 bool ShowColors = true) const;
|
/external/clang/lib/AST/ |
ASTDumper.cpp | 120 bool ShowColors; 143 if (Dumper.ShowColors) 147 if (Dumper.ShowColors) 189 ShowColors(SM && SM->getDiagnostics().getShowColors()) { } 192 const SourceManager *SM, bool ShowColors) 195 ShowColors(ShowColors) { } [all...] |
ASTDiagnostic.cpp | 254 bool ShowColors, raw_ostream &OS); 282 TDT.ShowColors, OS)) { [all...] |
/external/clang/lib/Basic/ |
Warnings.cpp | 56 Diags.setShowColors(Opts.ShowColors);
|
Diagnostic.cpp | 55 ShowColors = false; 838 TDT.ShowColors = getDiags()->ShowColors; [all...] |
/external/clang/lib/Analysis/ |
CFG.cpp | [all...] |
AnalysisDeclContext.cpp | 242 void AnalysisDeclContext::dumpCFG(bool ShowColors) { 243 getCFG()->dump(getASTContext().getLangOpts(), ShowColors);
|
/external/clang/include/clang/Analysis/ |
CFG.h | 646 void dump(const CFG *cfg, const LangOptions &LO, bool ShowColors = false) const; 648 bool ShowColors) const; [all...] |
AnalysisContext.h | 155 void dumpCFG(bool ShowColors);
|
/external/clang/include/clang/Basic/ |
Diagnostic.h | 179 bool ShowColors; // Color printing is enabled. 485 void setShowColors(bool Val = false) { ShowColors = Val; } 486 bool getShowColors() { return ShowColors; } [all...] |
/external/clang/lib/Driver/ |
Tools.cpp | [all...] |