HomeSort by relevance Sort by last modified time
    Searched refs:ShowColors (Results 1 - 18 of 18) sorted by null

  /external/clang/tools/diagtool/
TreeView.cpp 36 static bool showColors(llvm::raw_ostream &out) {
42 static void setColor(bool ShowColors, llvm::raw_ostream &out,
44 if (ShowColors)
48 static void resetColor(bool ShowColors, llvm::raw_ostream &out) {
49 if (ShowColors)
64 bool ShowColors = showColors(out);
65 setColor(ShowColors, out, llvm::raw_ostream::YELLOW);
67 resetColor(ShowColors, out);
80 if (ShowColors) {
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 216 ArrayRef<SMFixIt> FixIts, bool ShowColors) const {
233 Diagnostic.print(0, OS, ShowColors);
344 bool ShowColors) const {
346 ShowColors &= S.has_colors();
348 if (ShowColors)
370 if (ShowColors)
375 if (ShowColors)
380 if (ShowColors)
386 if (ShowColors) {
393 if (ShowColors)
    [all...]
  /external/clang/include/clang/Frontend/
TextDiagnostic.h 54 bool ShowColors);
71 /// \param ShowColors Enable colorizing of the message.
76 bool ShowColors);
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp 135 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors);
139 DiagOpts->ShowColors);
TextDiagnostic.cpp 693 if (DiagOpts->ShowColors)
696 printDiagnosticLevel(OS, Level, DiagOpts->ShowColors);
699 DiagOpts->MessageLength, DiagOpts->ShowColors);
705 bool ShowColors) {
706 if (ShowColors) {
727 if (ShowColors)
736 bool ShowColors) {
738 if (ShowColors) {
759 if (ShowColors)
793 if (DiagOpts->ShowColors)
    [all...]
ASTConsumers.cpp 57 bool ShowColors = Out.has_colors();
58 if (ShowColors)
61 if (ShowColors)
Warnings.cpp 59 Diags.setShowColors(Opts.ShowColors);
CompilerInvocation.cpp 534 Opts.ShowColors = Args.hasArg(OPT_fcolor_diagnostics);
    [all...]
  /external/llvm/include/llvm/Support/
SourceMgr.h 145 /// @param ShowColors - Display colored messages if output is a terminal and
150 bool ShowColors = true) const;
253 bool ShowColors = true) const;
  /external/clang/lib/AST/
ASTDumper.cpp 109 bool ShowColors;
132 if (Dumper.ShowColors)
136 if (Dumper.ShowColors)
146 ShowColors(SM && SM->getDiagnostics().getShowColors()) { }
149 const SourceManager *SM, bool ShowColors)
152 ShowColors(ShowColors) { }
    [all...]
ASTDiagnostic.cpp 234 bool ShowColors, raw_ostream &OS);
265 TDT.ShowColors, OS)) {
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
AnalysisDeclContext.cpp 230 void AnalysisDeclContext::dumpCFG(bool ShowColors) {
231 getCFG()->dump(getASTContext().getLangOpts(), ShowColors);
  /external/clang/include/clang/Analysis/
CFG.h 531 void dump(const CFG *cfg, const LangOptions &LO, bool ShowColors = false) const;
533 bool ShowColors) const;
809 void print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const;
810 void dump(const LangOptions &LO, bool ShowColors) const;
    [all...]
AnalysisContext.h 160 void dumpCFG(bool ShowColors);
  /external/clang/include/clang/Basic/
Diagnostic.h 178 bool ShowColors; // Color printing is enabled.
472 void setShowColors(bool Val = false) { ShowColors = Val; }
473 bool getShowColors() { return ShowColors; }
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 57 ShowColors = false;
847 TDT.ShowColors = getDiags()->ShowColors;
    [all...]
  /external/clang/lib/Driver/
Tools.cpp     [all...]

Completed in 818 milliseconds