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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
WithColor.h 12 #include "llvm/Support/raw_ostream.h"
41 /// raw_ostream.
43 /// Enable colors. Because raw_ostream is the one implementing colors, this
54 raw_ostream &OS;
62 WithColor(raw_ostream &OS, HighlightColor S,
64 /// To be used like this: WithColor(OS, raw_ostream::Black) << "text";
71 WithColor(raw_ostream &OS,
72 raw_ostream::Colors Color = raw_ostream::SAVEDCOLOR,
80 raw_ostream &get() { return OS;
    [all...]
raw_ostream.h 1 //===--- raw_ostream.h - Raw output stream ----------------------*- C++ -*-===//
9 // This file defines the raw_ostream class.
50 class raw_ostream { class in namespace:llvm
72 /// If buffered, then the raw_ostream owns the buffer if (BufferMode ==
84 raw_ostream *TiedStream = nullptr;
118 explicit raw_ostream(bool unbuffered = false, function in class:llvm::raw_ostream
126 raw_ostream(const raw_ostream &) = delete;
127 void operator=(const raw_ostream &) = delete;
129 virtual ~raw_ostream();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 1 //===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===//
13 #include "llvm/Support/raw_ostream.h"
66 constexpr raw_ostream::Colors raw_ostream::BLACK;
67 constexpr raw_ostream::Colors raw_ostream::RED;
68 constexpr raw_ostream::Colors raw_ostream::GREEN;
69 constexpr raw_ostream::Colors raw_ostream::YELLOW
    [all...]

Completed in 87 milliseconds