Home
last modified time | relevance | path

Searched refs:UseColor (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DWithColor.cpp33 static ManagedStatic<cl::opt<cl::boolOrDefault>, CreateUseColor> UseColor; variable
34 void llvm::initWithColorOptions() { *UseColor; } in initWithColorOptions()
130 return *UseColor == cl::BOU_UNSET ? OS.has_colors() in colorsEnabled()
131 : *UseColor == cl::BOU_TRUE; in colorsEnabled()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DLinePrinter.h36 LinePrinter(int Indent, bool UseColor, raw_ostream &Stream);
64 bool hasColor() const { return UseColor; } in hasColor()
84 bool UseColor; variable
163 bool UseColor; variable
H A DLinePrinter.cpp53 LinePrinter::LinePrinter(int Indent, bool UseColor, llvm::raw_ostream &Stream) in LinePrinter() argument
54 : OS(Stream), IndentSpaces(Indent), CurrentIndent(0), UseColor(UseColor) { in LinePrinter()
288 : OS(P.OS), UseColor(P.hasColor()) { in WithColor()
289 if (UseColor) in WithColor()
294 if (UseColor) in ~WithColor()
H A Dllvm-pdbutil.cpp1068 const bool UseColor = opts::pretty::ColorOutput == cl::BOU_UNSET in dumpPretty() local
1071 LinePrinter Printer(2, UseColor, Stream); in dumpPretty()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp712 cl::opt<cl::boolOrDefault> UseColor( in run() local
769 ViewOpts.Colors = UseColor == cl::BOU_UNSET in run()
771 : UseColor == cl::BOU_TRUE; in run()
774 if (UseColor == cl::BOU_FALSE) in run()
779 if (UseColor == cl::BOU_TRUE) in run()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DCoreProperties.td106 def UseColor: Property<"use-color", "Boolean">,