Searched defs:raw_os_ostream (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A Draw_os_ostream.h1 //===- raw_os_ostream.h - std::ostream adaptor for raw_ostream --*- C++ -*-===//
10 // This file defines the raw_os_ostream class.
22 /// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
25 class raw_os_ostream : public raw_ostream { class in namespace:llvm
36 raw_os_ostream(std::ostream &O) : OS(O) {} function in class:llvm::raw_os_ostream
37 ~raw_os_ostream();
/external/llvm/lib/Support/
H A Draw_os_ostream.cpp1 //===--- raw_os_ostream.cpp - Implement the raw_os_ostream class ----------===//
14 #include "llvm/Support/raw_os_ostream.h"
19 // raw_os_ostream
22 raw_os_ostream::~raw_os_ostream() {
26 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) {
30 uint64_t raw_os_ostream::current_pos() const { return OS.tellp(); }

Completed in 290 milliseconds