HomeSort by: relevance | last modified time | path
    Searched defs:WithColor (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
WithColor.cpp 1 //===- WithColor.cpp ------------------------------------------------------===//
9 #include "llvm/Support/WithColor.h"
22 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, ColorMode Mode)
61 raw_ostream &WithColor::error() { return error(errs()); }
63 raw_ostream &WithColor::warning() { return warning(errs()); }
65 raw_ostream &WithColor::note() { return note(errs()); }
67 raw_ostream &WithColor::remark() { return remark(errs()); }
69 raw_ostream &WithColor::error(raw_ostream &OS, StringRef Prefix,
73 return WithColor(OS, HighlightColor::Error
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
WithColor.h 1 //===- WithColor.h ----------------------------------------------*- C++ -*-===//
53 class WithColor {
58 /// To be used like this: WithColor(OS, HighlightColor::String) << "text";
62 WithColor(raw_ostream &OS, HighlightColor S,
64 /// To be used like this: WithColor(OS, raw_ostream::Black) << "text";
71 WithColor(raw_ostream &OS,
78 ~WithColor();
82 template <typename T> WithColor &operator<<(T &O) {
86 template <typename T> WithColor &operator<<(const T &O) {
121 WithColor &changeColor(raw_ostream::Colors Color, bool Bold = false
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
LinePrinter.cpp 287 WithColor::WithColor(LinePrinter &P, PDB_ColorItem C)
293 WithColor::~WithColor() {
298 void WithColor::applyColor(PDB_ColorItem C) {
LinePrinter.h 33 friend class WithColor;
153 class WithColor {
155 WithColor(LinePrinter &P, PDB_ColorItem C);
156 ~WithColor();

Completed in 29 milliseconds