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

/external/llvm/lib/Support/
H A Draw_ostream.cpp689 // raw_svector_ostream
692 // The raw_svector_ostream implementation uses the SmallVector itself as the
698 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { function in class:raw_svector_ostream
707 raw_svector_ostream::~raw_svector_ostream() {
713 /// outside of the raw_svector_ostream's control. It is only safe to do this
714 /// if the raw_svector_ostream has previously been flushed.
715 void raw_svector_ostream::resync() {
723 void raw_svector_ostream
[all...]
/external/llvm/include/llvm/Support/
H A Draw_ostream.h447 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
450 class raw_svector_ostream : public raw_ostream { class in namespace:llvm
460 /// Construct a new raw_svector_ostream.
464 explicit raw_svector_ostream(SmallVectorImpl<char> &O);
465 ~raw_svector_ostream();
468 /// outside of the raw_svector_ostream's control. It is only safe to do this
469 /// if the raw_svector_ostream has previously been flushed.

Completed in 117 milliseconds