HomeSort by relevance Sort by last modified time
    Searched refs:raw_fd_ostream (Results 1 - 25 of 60) sorted by null

1 2 3

  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 34 mcld::raw_fd_ostream::raw_fd_ostream(const char *pFilename, function in class:mcld::raw_fd_ostream
37 : llvm::raw_fd_ostream(pFilename, pErrorInfo, pFlags),
42 mcld::raw_fd_ostream::raw_fd_ostream(int pFD, function in class:mcld::raw_fd_ostream
45 : llvm::raw_fd_ostream(pFD, pShouldClose, pUnbuffered),
50 mcld::raw_fd_ostream::~raw_fd_ostream()
54 void mcld::raw_fd_ostream::setColor(bool pEnable)
61 mcld::raw_fd_ostream::changeColor(enum llvm::raw_ostream::Colors pColor
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 19 class raw_fd_ostream : public llvm::raw_fd_ostream class in namespace:mcld
22 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
32 raw_fd_ostream(const char *pFilename,
36 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
38 raw_fd_ostream(int pFD, bool pShouldClose, bool pUnbuffered=false);
40 virtual ~raw_fd_ostream();
63 mcld::raw_fd_ostream &outs();
67 mcld::raw_fd_ostream &errs();
  /external/llvm/include/llvm/Support/
ToolOutputFile.h 21 /// tool_output_file - This class contains a raw_fd_ostream and adds a
27 /// Installer - This class is declared before the raw_fd_ostream so that
28 /// it is constructed before the raw_fd_ostream is constructed and
29 /// destructed after the raw_fd_ostream is destructed. It installs
44 raw_fd_ostream OS;
48 /// to raw_fd_ostream's constructor.
52 /// os - Return the contained raw_fd_ostream.
53 raw_fd_ostream &os() { return OS; }
raw_ostream.h 307 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
309 class raw_fd_ostream : public raw_ostream { class in namespace:llvm
340 /// F_Excl - When opening a file, this flag makes raw_fd_ostream
354 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
364 raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
367 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
369 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
371 ~raw_fd_ostream();
401 /// has_error - Return the value of the flag in this raw_fd_ostream indicating
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 20 raw_fd_ostream OS(Path, ErrorInfo, raw_fd_ostream::F_Binary);
31 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 24 class raw_fd_ostream;
45 // descriptor it contains and wrap it in llvm::raw_fd_ostream object. It
48 llvm::raw_fd_ostream *dup();
  /external/llvm/lib/Support/
raw_ostream.cpp 419 // raw_fd_ostream
422 /// raw_fd_ostream - Open the specified file for writing. If an error
426 raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, function in class:raw_fd_ostream
476 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
478 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) function in class:raw_fd_ostream
496 raw_fd_ostream::~raw_fd_ostream() {
524 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size)
    [all...]
Timer.cpp 60 return new raw_fd_ostream(2, false); // stderr.
62 return new raw_fd_ostream(1, false); // stdout.
69 raw_ostream *Result = new raw_fd_ostream(OutputFilename.c_str(),
70 Error, raw_fd_ostream::F_Append);
77 return new raw_fd_ostream(2, false); // stderr.
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 56 llvm::raw_fd_ostream *OS = new llvm::raw_fd_ostream(
57 OutputPath.str().c_str(), Error, llvm::raw_fd_ostream::F_Append);
CompilerInstance.cpp 110 llvm::raw_fd_ostream *FileOS(
111 new llvm::raw_fd_ostream(DiagOpts->DiagnosticLogFile.c_str(),
112 ErrorInfo, llvm::raw_fd_ostream::F_Append));
136 OwningPtr<llvm::raw_fd_ostream> OS;
137 OS.reset(new llvm::raw_fd_ostream(OutputFile.str().c_str(), ErrorInfo,
138 llvm::raw_fd_ostream::F_Binary));
456 llvm::raw_fd_ostream *
465 llvm::raw_fd_ostream *
473 llvm::raw_fd_ostream *OS = createOutputFile(OutputPath, Error, Binary,
494 llvm::raw_fd_ostream *
    [all...]
DependencyGraph.cpp 104 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err);
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 127 llvm::raw_fd_ostream *OutputFile::dup() {
144 llvm::raw_fd_ostream *result =
145 new (std::nothrow) llvm::raw_fd_ostream(newfd, /* shouldClose */true);
  /external/clang/include/clang/Frontend/
Utils.h 22 class raw_fd_ostream;
95 void CacheTokens(Preprocessor &PP, llvm::raw_fd_ostream* OS);
CompilerInstance.h 28 class raw_fd_ostream;
586 llvm::raw_fd_ostream *
594 llvm::raw_fd_ostream *
627 static llvm::raw_fd_ostream *
  /external/clang/unittests/Tooling/
RewriterTestContext.h 72 llvm::raw_fd_ostream Closer(FD, /*shouldClose=*/true);
78 llvm::raw_fd_ostream OutStream(Path.c_str(),
79 ErrorInfo, llvm::raw_fd_ostream::F_Binary);
  /external/clang/tools/libclang/
CIndexer.cpp 124 llvm::raw_fd_ostream OS(SavedFile.c_str(), ErrorInfo,
125 llvm::raw_fd_ostream::F_Binary);
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 110 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
111 raw_fd_ostream::F_Binary);
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 60 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
119 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
  /external/llvm/lib/Analysis/
CFGPrinter.cpp 83 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
117 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 90 OwningPtr<llvm::raw_fd_ostream> OS;
92 OS.reset(new llvm::raw_fd_ostream(fd, /*shouldClose=*/true));
94 OS.reset(new llvm::raw_fd_ostream(Filename.c_str(), Err,
95 llvm::raw_fd_ostream::F_Binary));
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 74 raw_fd_ostream::F_Binary);
  /external/llvm/lib/Target/
TargetMachineC.cpp 179 raw_fd_ostream dest(Filename, error, raw_fd_ostream::F_Binary);
  /external/llvm/tools/llvm-as/
llvm-as.cpp 74 raw_fd_ostream::F_Binary));
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 129 llvm::raw_fd_ostream infoOut(infoFile.c_str(), errMsg,
130 llvm::raw_fd_ostream::F_Binary);
157 llvm::raw_fd_ostream newOut(fd, /*shouldClose=*/true);
193 llvm::raw_fd_ostream Out(origFE->getName(), errMsg,
194 llvm::raw_fd_ostream::F_Binary);
  /external/clang/lib/AST/
InheritViz.cpp 152 llvm::raw_fd_ostream O(Filename.c_str(), ErrMsg);

Completed in 203 milliseconds

1 2 3