Searched refs:TheStream (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DFormattedStream.h28 /// TheStream - The real stream we output to. We set it to be
31 raw_ostream *TheStream; member in class:llvm::formatted_raw_ostream
52 return TheStream->tell();
63 TheStream = &Stream;
66 // own buffering, and it doesn't need or want TheStream to do another
67 // layer of buffering underneath. Resize the buffer to what TheStream
68 // had been using, and tell TheStream not to do its own buffering.
69 if (size_t BufferSize = TheStream->GetBufferSize())
73 TheStream->SetUnbuffered();
90 : TheStream(nullpt
[all...]
H A Dcircular_raw_ostream.h39 /// TheStream - The real stream we output to. We set it to be
42 raw_ostream *TheStream; member in class:llvm::circular_raw_ostream
76 TheStream->write(Cur, BufferArray + BufferSize - Cur);
78 TheStream->write(BufferArray, Cur - BufferArray);
89 // This has the same effect as calling TheStream.current_pos(),
91 return TheStream->tell() - TheStream->GetNumBytesInBuffer();
110 : raw_ostream(/*unbuffered*/ true), TheStream(nullptr),
133 TheStream = &Stream;
148 if (!TheStream)
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A Dcircular_raw_ostream.cpp20 TheStream->write(Ptr, Size);
42 TheStream->write(Banner, std::strlen(Banner));
H A DFormattedStream.cpp82 TheStream->write(Ptr, Size);

Completed in 134 milliseconds