Searched defs:raw_ostream (Results 1 - 3 of 3) sorted by last modified time

/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h102 // std::ostream with an implicit conversion to raw_ostream& and stream
104 // but still find raw_ostream& overloads.
114 operator raw_ostream&() { return ros_; }
/external/llvm/include/llvm/Support/
H A Draw_ostream.h1 //===--- raw_ostream.h - Raw output stream ----------------------*- C++ -*-===//
10 // This file defines the raw_ostream class.
32 /// raw_ostream - This class implements an extremely fast bulk output stream
36 class raw_ostream { class in namespace:llvm
38 void operator=(const raw_ostream &) LLVM_DELETED_FUNCTION;
39 raw_ostream(const raw_ostream &) LLVM_DELETED_FUNCTION;
52 /// If buffered, then the raw_ostream owns the buffer if (BufferMode ==
81 explicit raw_ostream(bool unbuffered=false) function in class:llvm::raw_ostream
87 virtual ~raw_ostream();
[all...]
/external/llvm/lib/Support/
H A Draw_ostream.cpp1 //===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===//
14 #include "llvm/Support/raw_ostream.h"
61 raw_ostream::~raw_ostream() {
62 // raw_ostream's subclasses should take care to flush the buffer
65 "raw_ostream destructor called with non-empty buffer!");
72 void raw_ostream::handle() {}
74 size_t raw_ostream::preferred_buffer_size() const {
79 void raw_ostream
[all...]

Completed in 41 milliseconds