/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/utils/yaml-bench/ |
YAMLBench.cpp | 197 bool ShowColors = UseColor == cl::BOU_UNSET 213 yaml::Stream stream(Buf.getBuffer(), sm, ShowColors);
|
/external/clang/lib/Frontend/ |
ASTConsumers.cpp | 56 bool ShowColors = Out.has_colors(); 57 if (ShowColors) 61 if (ShowColors)
|
/external/llvm/lib/Support/ |
SourceMgr.cpp | 199 bool ShowColors) const { 212 Diagnostic.print(nullptr, OS, ShowColors); 218 ArrayRef<SMFixIt> FixIts, bool ShowColors) const { 219 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors); 224 ArrayRef<SMFixIt> FixIts, bool ShowColors) const { 225 PrintMessage(llvm::errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); 335 void SMDiagnostic::print(const char *ProgName, raw_ostream &S, bool ShowColors, 338 ShowColors &= S.has_colors(); 340 if (ShowColors) 363 if (ShowColors) [all...] |
YAMLParser.cpp | 268 Scanner(StringRef Input, SourceMgr &SM, bool ShowColors = true); 269 Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors = true); 279 SM.PrintMessage(Loc, Kind, Message, Ranges, /* FixIts= */ None, ShowColors); 555 bool ShowColors; 761 Scanner::Scanner(StringRef Input, SourceMgr &sm, bool ShowColors) 762 : SM(sm), ShowColors(ShowColors) { 766 Scanner::Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors) 767 : SM(SM_), ShowColors(ShowColors) { [all...] |
/external/clang/include/clang/Basic/ |
Diagnostic.h | 180 bool ShowColors; // Color printing is enabled. 482 void setShowColors(bool Val = false) { ShowColors = Val; } 483 bool getShowColors() { return ShowColors; } [all...] |
/external/clang/lib/AST/ |
ASTDumper.cpp | 120 bool ShowColors; 192 if (Dumper.ShowColors) 196 if (Dumper.ShowColors) 206 ShowColors(SM && SM->getDiagnostics().getShowColors()) { } 209 const SourceManager *SM, bool ShowColors) 212 ShowColors(ShowColors) { } [all...] |
/external/clang/lib/Analysis/ |
CFG.cpp | [all...] |
/external/clang/lib/Driver/ |
Tools.cpp | [all...] |