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

/external/llvm/lib/Support/
H A Draw_ostream.cpp700 // raw_svector_ostream
703 // The raw_svector_ostream implementation uses the SmallVector itself as the
709 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { function in class:raw_svector_ostream
718 raw_svector_ostream::~raw_svector_ostream() {
724 /// outside of the raw_svector_ostream's control. It is only safe to do this
725 /// if the raw_svector_ostream has previously been flushed.
726 void raw_svector_ostream::resync() {
734 void raw_svector_ostream
[all...]
/external/llvm/include/llvm/Support/
H A Draw_ostream.h458 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
461 class raw_svector_ostream : public raw_ostream { class in namespace:llvm
471 /// Construct a new raw_svector_ostream.
475 explicit raw_svector_ostream(SmallVectorImpl<char> &O);
476 ~raw_svector_ostream();
479 /// outside of the raw_svector_ostream's control. It is only safe to do this
480 /// if the raw_svector_ostream has previously been flushed.

Completed in 72 milliseconds