HomeSort by relevance Sort by last modified time
    Searched refs:raw_null_ostream (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/Support/
raw_ostream.h 505 class raw_null_ostream : public raw_pwrite_stream { class in namespace:llvm
515 explicit raw_null_ostream() {} function in class:llvm::raw_null_ostream
516 ~raw_null_ostream() override;
  /external/llvm/lib/Support/
raw_ostream.cpp 723 static raw_null_ostream S;
756 // raw_null_ostream
759 raw_null_ostream::~raw_null_ostream() {
762 // with raw_null_ostream, but it's better to have raw_null_ostream follow
763 // the rules than to change the rules just for raw_null_ostream.
768 void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
771 uint64_t raw_null_ostream::current_pos() const {
775 void raw_null_ostream::pwrite_impl(const char *Ptr, size_t Size
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 555 return llvm::make_unique<raw_null_ostream>();
562 return llvm::make_unique<raw_null_ostream>();
Verifier.cpp     [all...]
  /external/clang/include/clang/Frontend/
CompilerInstance.h 734 llvm::raw_null_ostream *createNullOutputFile();
  /external/clang/lib/Frontend/
CompilerInstance.cpp 581 llvm::raw_null_ostream *CompilerInstance::createNullOutputFile() {
582 auto OS = llvm::make_unique<llvm::raw_null_ostream>();
583 llvm::raw_null_ostream *Ret = OS.get();
    [all...]

Completed in 132 milliseconds