HomeSort by relevance Sort by last modified time
    Searched defs:raw_svector_ostream (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
raw_ostream.cpp 681 // 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::write_impl(const char *Ptr, size_t Size)
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 445 /// 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.

Completed in 131 milliseconds