Home | History | Annotate | Download | only in Support

Lines Matching refs:OS

702   OS.append(Ptr, Size);
715 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
720 OS.reserve(OS.size() + 128);
721 SetBuffer(OS.end(), OS.capacity() - OS.size());
735 if (OS.capacity() - OS.size() < 64)
736 OS.reserve(OS.capacity() * 2);
737 SetBuffer(OS.end(), OS.capacity() - OS.size());
744 if (Ptr == OS.end()) {
745 assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!");
746 OS.set_size(OS.size() + Size);
751 OS.append(Ptr, Ptr+Size);
755 if (OS.capacity() - OS.size() < 64)
756 OS.reserve(OS.capacity() * 2);
759 SetBuffer(OS.end(), OS.capacity() - OS.size());
763 return OS.size();
768 return StringRef(OS.begin(), OS.size());