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

/external/llvm/lib/Support/
H A Draw_ostream.cpp706 // raw_svector_ostream
709 // The raw_svector_ostream implementation uses the SmallVector itself as the
715 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { function in class:raw_svector_ostream
724 raw_svector_ostream::~raw_svector_ostream() {
730 /// outside of the raw_svector_ostream's control. It is only safe to do this
731 /// if the raw_svector_ostream has previously been flushed.
732 void raw_svector_ostream::resync() {
740 void raw_svector_ostream
[all...]
/external/llvm/include/llvm/Support/
H A Draw_ostream.h462 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
465 class raw_svector_ostream : public raw_ostream { class in namespace:llvm
475 /// Construct a new raw_svector_ostream.
479 explicit raw_svector_ostream(SmallVectorImpl<char> &O);
480 ~raw_svector_ostream();
483 /// outside of the raw_svector_ostream's control. It is only safe to do this
484 /// if the raw_svector_ostream has previously been flushed.

Completed in 1305 milliseconds