| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | raw_ostream.h | 94 enum class Colors { enum 115 static constexpr Colors BLACK = Colors::BLACK; 116 static constexpr Colors RED = Colors::RED; 117 static constexpr Colors GREEN = Colors::GREEN; 118 static constexpr Colors YELLOW = Colors::YELLOW; 119 static constexpr Colors BLUE = Colors::BLUE; 120 static constexpr Colors MAGENTA = Colors::MAGENTA; 121 static constexpr Colors CYAN = Colors::CYAN; 122 static constexpr Colors WHITE = Colors::WHITE; 123 static constexpr Colors BRIGHT_BLACK = Colors::BRIGHT_BLACK; [all …]
|
| H A D | WithColor.h | 72 raw_ostream &OS, raw_ostream::Colors Color = raw_ostream::SAVEDCOLOR, 120 LLVM_ABI WithColor &changeColor(raw_ostream::Colors Color, bool Bold = false,
|
| H A D | FormattedStream.h | 183 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override { in changeColor()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | Logger.cpp | 39 llvm::WithColor Header(OS, llvm::raw_ostream::Colors::RED, /*Bold=*/true); in beginAnalysis() 51 llvm::WithColor Header(OS, llvm::raw_ostream::Colors::RED, /*Bold=*/true); in endAnalysis() 63 llvm::WithColor Header(OS, llvm::raw_ostream::Colors::RED, /*Bold=*/true); in enterBlock() 81 llvm::WithColor Subheader(OS, llvm::raw_ostream::Colors::CYAN, in enterElement() 90 llvm::WithColor Subheader(OS, llvm::raw_ostream::Colors::CYAN, in recordState()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| H A D | MarkupFilter.cpp | 405 OS.changeColor(raw_ostream::Colors::SAVEDCOLOR, Bold); in trySGR() 408 auto SGRColor = StringSwitch<std::optional<raw_ostream::Colors>>(Node.Text) in trySGR() 409 .Case("\033[30m", raw_ostream::Colors::BLACK) in trySGR() 410 .Case("\033[31m", raw_ostream::Colors::RED) in trySGR() 411 .Case("\033[32m", raw_ostream::Colors::GREEN) in trySGR() 412 .Case("\033[33m", raw_ostream::Colors::YELLOW) in trySGR() 413 .Case("\033[34m", raw_ostream::Colors::BLUE) in trySGR() 414 .Case("\033[35m", raw_ostream::Colors::MAGENTA) in trySGR() 415 .Case("\033[36m", raw_ostream::Colors::CYAN) in trySGR() 416 .Case("\033[37m", raw_ostream::Colors::WHITE) in trySGR() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | CoverageViewOptions.h | 29 bool Colors; member 64 raw_ostream::Colors Color) const { in colored_ostream() 65 return llvm::colored_ostream(OS, Color, Colors); in colored_ostream()
|
| H A D | SourceCoverageViewText.cpp | 170 std::optional<raw_ostream::Colors> Highlight; in renderLine() 183 getOptions().Colors && Highlight, /*Bold=*/false, in renderLine() 200 getOptions().Colors && Highlight, /*Bold=*/false, /*BG=*/true) in renderLine() 222 Line.hasMultipleRegions() && getOptions().Colors) in renderLineCoverageColumn() 305 colored_ostream(OS, raw_ostream::RED, getOptions().Colors && !Count, in renderBranchView() 381 getOptions().Colors && Record.getPercentCovered() < 100.0, in renderMCDCView()
|
| H A D | RenderingSupport.h | 50 raw_ostream::Colors Color,
|
| H A D | SourceCoverageView.cpp | 249 getOptions().Colors) in print()
|
| /freebsd/contrib/llvm-project/lld/Common/ |
| H A D | ErrorHandler.cpp | 205 void ErrorHandler::reportDiagnostic(StringRef location, Colors c, in reportDiagnostic() 213 os << c << diagKind << ": " << Colors::RESET; in reportDiagnostic() 229 reportDiagnostic(logName, Colors::RESET, "", msg); in log() 250 reportDiagnostic(getLocation(msg), Colors::MAGENTA, "warning", msg); in warn() 275 reportDiagnostic(getLocation(msg), Colors::RED, "error", msg); in error() 277 reportDiagnostic(logName, Colors::RED, "error", errorLimitExceededMsg); in error()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | raw_ostream.cpp | 64 constexpr raw_ostream::Colors raw_ostream::BLACK; 65 constexpr raw_ostream::Colors raw_ostream::RED; 66 constexpr raw_ostream::Colors raw_ostream::GREEN; 67 constexpr raw_ostream::Colors raw_ostream::YELLOW; 68 constexpr raw_ostream::Colors raw_ostream::BLUE; 69 constexpr raw_ostream::Colors raw_ostream::MAGENTA; 70 constexpr raw_ostream::Colors raw_ostream::CYAN; 71 constexpr raw_ostream::Colors raw_ostream::WHITE; 72 constexpr raw_ostream::Colors raw_ostream::SAVEDCOLOR; 73 constexpr raw_ostream::Colors raw_ostream::RESET; [all …]
|
| H A D | GraphWriter.cpp | 93 static const char* Colors[NumColors] = { in getColorString() local 97 return Colors[ColorNumber % NumColors]; in getColorString()
|
| H A D | WithColor.cpp | 143 WithColor &WithColor::changeColor(raw_ostream::Colors Color, bool Bold, in changeColor()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | EHPersonalities.cpp | 146 ColorVector &Colors = BlockColors[Visiting]; in colorEHFunclets() local 147 if (!is_contained(Colors, Color)) in colorEHFunclets() 148 Colors.push_back(Color); in colorEHFunclets()
|
| /freebsd/contrib/llvm-project/lld/include/lld/Common/ |
| H A D | ErrorHandler.h | 124 using Colors = raw_ostream::Colors; 127 void reportDiagnostic(StringRef location, Colors c, StringRef diagKind,
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | TextDiagnostic.cpp | 26 static const enum raw_ostream::Colors noteColor = raw_ostream::CYAN; 27 static const enum raw_ostream::Colors remarkColor = 29 static const enum raw_ostream::Colors fixitColor = 31 static const enum raw_ostream::Colors caretColor = 33 static const enum raw_ostream::Colors warningColor = 35 static const enum raw_ostream::Colors templateColor = 37 static const enum raw_ostream::Colors errorColor = raw_ostream::RED; 38 static const enum raw_ostream::Colors fatalColor = raw_ostream::RED; 40 static const enum raw_ostream::Colors savedColor = 47 static constexpr raw_ostream::Colors CommentColor = raw_ostream::YELLOW; [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | TextDiagnostic.h | 48 enum llvm::raw_ostream::Colors Color; 49 StyleRange(unsigned S, unsigned E, enum llvm::raw_ostream::Colors C) in StyleRange()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCInstPrinter.h | 80 SmallVector<raw_ostream::Colors, 4> ColorStack{raw_ostream::Colors::RESET};
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCInstPrinter.cpp | 236 raw_ostream::Colors Color = raw_ostream::Colors::RESET; in WithMarkup()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTDumperUtils.h | 30 llvm::raw_ostream::Colors Color;
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | TimelineView.cpp | 109 static raw_ostream::Colors chooseColor(unsigned CumulativeCycles, in chooseColor() 126 raw_ostream::Colors Color = chooseColor(Cycles, Executions, BufferSize); in tryChangeColor()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAGHVX.cpp | 112 Colors.clear(); in Coloring() 116 return Colors; in colors() 129 MapType Colors; member 141 auto F = Colors.find(N); in getColor() 142 return F != Colors.end() ? F->second : ColorKind::None; in getColor() 206 if (Colors.count(N)) in color() 212 Colors[N] = other(P.second); in color() 218 if (!Needed.count(conj(N)) || Colors.count(N)) in color() 223 Colors[N] = other(P.second); in color() 231 if (!Colors.count(N)) in color() [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | asf | 49 #>>>121 lelong x \b, Colors Used Count %d 50 #>>>125 lelong x \b, Important Colors Count %d
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/ |
| H A D | MarkupFilter.h | 153 std::optional<raw_ostream::Colors> Color;
|
| /freebsd/contrib/libxo/doc/ |
| H A D | field-roles.rst | 51 Colors and effects control how text values are displayed; they are 56 Colors and effects remain in effect until modified by other "C"-role
|