Home
last modified time | relevance | path

Searched refs:raw_null_ostream (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Support/
Draw_ostream.cpp736 static raw_null_ostream S; in nulls()
834 raw_null_ostream::~raw_null_ostream() { in ~raw_null_ostream()
843 void raw_null_ostream::write_impl(const char *Ptr, size_t Size) { in write_impl()
846 uint64_t raw_null_ostream::current_pos() const { in current_pos()
850 void raw_null_ostream::pwrite(const char *Ptr, size_t Size, uint64_t Offset) {} in pwrite()
/external/llvm/include/llvm/Support/
Draw_ostream.h511 class raw_null_ostream : public raw_pwrite_stream {
520 explicit raw_null_ostream() {} in raw_null_ostream() function
521 ~raw_null_ostream() override;
/external/llvm/lib/IR/
DGCOV.cpp555 return llvm::make_unique<raw_null_ostream>(); in openCoveragePath()
562 return llvm::make_unique<raw_null_ostream>(); in openCoveragePath()
DVerifier.cpp3541 raw_null_ostream NullStr; in verifyFunction()
3550 raw_null_ostream NullStr; in verifyModule()
/external/clang/include/clang/Frontend/
DCompilerInstance.h685 llvm::raw_null_ostream *createNullOutputFile();
/external/clang/lib/Frontend/
DCompilerInstance.cpp564 llvm::raw_null_ostream *CompilerInstance::createNullOutputFile() { in createNullOutputFile()
565 auto OS = llvm::make_unique<llvm::raw_null_ostream>(); in createNullOutputFile()
566 llvm::raw_null_ostream *Ret = OS.get(); in createNullOutputFile()