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

/external/swiftshader/third_party/LLVM/lib/Support/
H A Draw_ostream.cpp681 // raw_svector_ostream
684 // The raw_svector_ostream implementation uses the SmallVector itself as the
690 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { function in class:raw_svector_ostream
699 raw_svector_ostream::~raw_svector_ostream() {
705 /// outside of the raw_svector_ostream's control. It is only safe to do this
706 /// if the raw_svector_ostream has previously been flushed.
707 void raw_svector_ostream::resync() {
715 void raw_svector_ostream
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A Draw_ostream.h445 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
448 class raw_svector_ostream : public raw_ostream { class in namespace:llvm
458 /// Construct a new raw_svector_ostream.
462 explicit raw_svector_ostream(SmallVectorImpl<char> &O);
463 ~raw_svector_ostream();
466 /// outside of the raw_svector_ostream's control. It is only safe to do this
467 /// if the raw_svector_ostream has previously been flushed.
/external/llvm/include/llvm/Support/
H A Draw_ostream.h474 /// raw_svector_ostream operates without a buffer, delegating all memory
477 class raw_svector_ostream : public raw_pwrite_stream { class in namespace:llvm
489 /// Construct a new raw_svector_ostream.
493 explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { function in class:llvm::raw_svector_ostream
496 ~raw_svector_ostream() override {}
519 class buffer_ostream : public raw_svector_ostream {
524 buffer_ostream(raw_ostream &OS) : raw_svector_ostream(Buffer), OS(OS) {}

Completed in 127 milliseconds