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 695 // raw_svector_ostream
698 // The raw_svector_ostream implementation uses the SmallVector itself as the
704 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { function in class:raw_svector_ostream
713 raw_svector_ostream::~raw_svector_ostream() {
719 /// outside of the raw_svector_ostream's control. It is only safe to do this
720 /// if the raw_svector_ostream has previously been flushed.
721 void raw_svector_ostream::resync() {
729 void raw_svector_ostream::write_impl(const char *Ptr, size_t Size)
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 450 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
453 class raw_svector_ostream : public raw_ostream { class in namespace:llvm
463 /// Construct a new raw_svector_ostream.
467 explicit raw_svector_ostream(SmallVectorImpl<char> &O);
468 ~raw_svector_ostream();
471 /// outside of the raw_svector_ostream's control. It is only safe to do this
472 /// if the raw_svector_ostream has previously been flushed.

Completed in 1254 milliseconds