Home
last modified time | relevance | path

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

/freebsd/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()
37 return *UseColor == cl::BOU_UNSET ? OS.has_colors() in DefaultAutoDetectFunction()
38 : *UseColor == cl::BOU_TRUE; in DefaultAutoDetectFunction()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp55 LinePrinter::LinePrinter(int Indent, bool UseColor, llvm::raw_ostream &Stream, in LinePrinter() argument
57 : OS(Stream), IndentSpaces(Indent), CurrentIndent(0), UseColor(UseColor), in LinePrinter()
294 : OS(P.OS), UseColor(P.hasColor()) { in WithColor()
295 if (UseColor) in WithColor()
300 if (UseColor) in ~WithColor()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DLinePrinter.h55 LLVM_ABI LinePrinter(int Indent, bool UseColor, raw_ostream &Stream,
85 bool hasColor() const { return UseColor; } in hasColor()
107 bool UseColor; variable
182 bool UseColor; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstPrinter.h61 bool UseColor = false; variable
158 bool getUseColor() const { return UseColor; } in getUseColor()
159 void setUseColor(bool Value) { UseColor = Value; } in setUseColor()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp761 cl::opt<cl::boolOrDefault> UseColor( in run() local
842 ViewOpts.Colors = UseColor == cl::BOU_UNSET in run()
844 : UseColor == cl::BOU_TRUE; in run()
847 if (UseColor == cl::BOU_FALSE) in run()
852 if (UseColor == cl::BOU_TRUE) in run()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h172 void UseColor(bool use_color);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp484 m_editline_up->UseColor(use_color); in SetUseColor()
H A DCoreProperties.td161 def UseColor: Property<"use-color", "Boolean">,
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp1098 const bool UseColor = opts::pretty::ColorOutput == cl::BOU_UNSET in dumpPretty() local
1101 LinePrinter Printer(2, UseColor, Stream, opts::Filters); in dumpPretty()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp1115 void Editline::UseColor(bool use_color) { m_color = use_color; } in UseColor() function in Editline