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

/external/llvm/include/llvm/Support/
H A Draw_ostream.h452 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
455 class raw_svector_ostream : public raw_ostream { class in namespace:llvm
465 /// Construct a new raw_svector_ostream.
469 explicit raw_svector_ostream(SmallVectorImpl<char> &O);
470 ~raw_svector_ostream();
473 /// outside of the raw_svector_ostream's control. It is only safe to do this
474 /// if the raw_svector_ostream has previously been flushed.
/external/llvm/lib/Support/
H A Draw_ostream.cpp697 // raw_svector_ostream
700 // The raw_svector_ostream implementation uses the SmallVector itself as the
706 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { function in class:raw_svector_ostream
715 raw_svector_ostream::~raw_svector_ostream() {
721 /// outside of the raw_svector_ostream's control. It is only safe to do this
722 /// if the raw_svector_ostream has previously been flushed.
723 void raw_svector_ostream::resync() {
731 void raw_svector_ostream
[all...]

Completed in 177 milliseconds