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 511 class raw_null_ostream : public raw_pwrite_stream { class in namespace:llvm
520 explicit raw_null_ostream() {} function in class:llvm::raw_null_ostream
521 ~raw_null_ostream() override;
  /external/llvm/lib/Support/
raw_ostream.cpp 736 static raw_null_ostream S;
831 // raw_null_ostream
834 raw_null_ostream::~raw_null_ostream() {
837 // with raw_null_ostream, but it's better to have raw_null_ostream follow
838 // the rules than to change the rules just for raw_null_ostream.
843 void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
846 uint64_t raw_null_ostream::current_pos() const {
850 void raw_null_ostream::pwrite(const char *Ptr, size_t Size, uint64_t Offset) {
    [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 685 llvm::raw_null_ostream *createNullOutputFile();
  /external/clang/lib/Frontend/
CompilerInstance.cpp 564 llvm::raw_null_ostream *CompilerInstance::createNullOutputFile() {
565 auto OS = llvm::make_unique<llvm::raw_null_ostream>();
566 llvm::raw_null_ostream *Ret = OS.get();
    [all...]

Completed in 1409 milliseconds