Searched defs:TheStream (Results 1 - 2 of 2) sorted by last modified time

/external/llvm/include/llvm/Support/
H A DFormattedStream.h39 /// TheStream - The real stream we output to. We set it to be
42 raw_ostream *TheStream; member in class:llvm::formatted_raw_ostream
44 /// DeleteStream - Do we need to delete TheStream in the
68 return TheStream->tell();
88 : raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) {
92 : raw_ostream(), TheStream(nullptr), DeleteStream(false), Position(0, 0) {
104 TheStream = &Stream;
108 // own buffering, and it doesn't need or want TheStream to do another
109 // layer of buffering underneath. Resize the buffer to what TheStream
110 // had been using, and tell TheStream no
[all...]
H A Dcircular_raw_ostream.h40 /// TheStream - The real stream we output to. We set it to be
43 raw_ostream *TheStream; member in class:llvm::circular_raw_ostream
77 TheStream->write(Cur, BufferArray + BufferSize - Cur);
79 TheStream->write(BufferArray, Cur - BufferArray);
90 // This has the same effect as calling TheStream.current_pos(),
92 return TheStream->tell() - TheStream->GetNumBytesInBuffer();
112 TheStream(nullptr),
125 TheStream(nullptr),
147 TheStream
[all...]

Completed in 142 milliseconds