HomeSort by relevance Sort by last modified time
    Searched defs:WithColor (Results 1 - 8 of 8) sorted by null

  /external/llvm/lib/DebugInfo/DWARF/
SyntaxHighlighting.cpp 21 WithColor::WithColor(llvm::raw_ostream &OS, enum HighlightColor Type) : OS(OS) {
35 WithColor::~WithColor() {
SyntaxHighlighting.h 24 class WithColor {
28 /// To be used like this: WithColor(OS, syntax::String) << "text";
29 WithColor(llvm::raw_ostream &OS, enum HighlightColor Type);
30 ~WithColor();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
WithColor.cpp 1 //===- WithColor.cpp ------------------------------------------------------===//
10 #include "llvm/Support/WithColor.h"
22 bool WithColor::colorsEnabled(raw_ostream &OS) {
28 WithColor::WithColor(raw_ostream &OS, HighlightColor Color) : OS(OS) {
63 raw_ostream &WithColor::error() { return error(errs()); }
65 raw_ostream &WithColor::warning() { return warning(errs()); }
67 raw_ostream &WithColor::note() { return note(errs()); }
69 raw_ostream &WithColor::error(raw_ostream &OS, StringRef Prefix) {
72 return WithColor(OS, HighlightColor::Error).get() << "error: "
    [all...]
  /external/llvm/tools/llvm-pdbdump/
LinePrinter.cpp 86 WithColor::WithColor(LinePrinter &P, PDB_ColorItem C) : OS(P.OS) {
90 WithColor::~WithColor() { OS.resetColor(); }
92 void WithColor::applyColor(PDB_ColorItem C) {
LinePrinter.h 24 friend class WithColor;
80 class WithColor {
82 WithColor(LinePrinter &P, PDB_ColorItem C);
83 ~WithColor();
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
WithColor.h 1 //===- WithColor.h ----------------------------------------------*- C++ -*-===//
37 class WithColor {
43 /// To be used like this: WithColor(OS, HighlightColor::String) << "text";
44 WithColor(raw_ostream &OS, HighlightColor S);
45 ~WithColor();
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
LinePrinter.cpp 289 WithColor::WithColor(LinePrinter &P, PDB_ColorItem C)
295 WithColor::~WithColor() {
300 void WithColor::applyColor(PDB_ColorItem C) {
LinePrinter.h 34 friend class WithColor;
155 class WithColor {
157 WithColor(LinePrinter &P, PDB_ColorItem C);
158 ~WithColor();

Completed in 113 milliseconds