Lines Matching refs:WrappedStream
381 explicit EscapeStringStream(llvm::raw_ostream &WrappedStream, in EscapeStringStream() argument
383 : Escape(Escape), WrappedStream(WrappedStream) { in EscapeStringStream()
393 WrappedStream << It->getSecond(); in write_impl()
395 WrappedStream << C; in write_impl()
399 uint64_t current_pos() const override { return WrappedStream.tell(); } in current_pos()
403 llvm::raw_ostream &WrappedStream; member in llvm::mustache::EscapeStringStream
409 explicit AddIndentationStringStream(llvm::raw_ostream &WrappedStream, in AddIndentationStringStream() argument
411 : Indentation(Indentation), WrappedStream(WrappedStream) { in AddIndentationStringStream()
421 WrappedStream << C; in write_impl()
423 WrappedStream << Indent; in write_impl()
427 uint64_t current_pos() const override { return WrappedStream.tell(); } in current_pos()
431 llvm::raw_ostream &WrappedStream; member in llvm::mustache::AddIndentationStringStream