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

1 2 3

  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 37 raw_fd_ostream::raw_fd_ostream(const char* pFilename, function in class:mcld::raw_fd_ostream
40 : llvm::raw_fd_ostream(pFilename, pErrorCode, pFlags),
45 raw_fd_ostream::raw_fd_ostream(int pFD, function in class:mcld::raw_fd_ostream
48 : llvm::raw_fd_ostream(pFD, pShouldClose, pUnbuffered),
53 raw_fd_ostream::~raw_fd_ostream() {
56 void raw_fd_ostream::setColor(bool pEnable) {
61 llvm::raw_ostream& raw_fd_ostream::changeColor
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 18 class raw_fd_ostream : public llvm::raw_fd_ostream { class in namespace:mcld
20 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
30 raw_fd_ostream(const char* pFilename,
34 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
36 raw_fd_ostream(int pFD, bool pShouldClose, bool pUnbuffered = false);
38 virtual ~raw_fd_ostream();
59 mcld::raw_fd_ostream& outs();
63 mcld::raw_fd_ostream& errs();
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 24 class raw_fd_ostream;
39 // descriptor it contains and wrap it in llvm::raw_fd_ostream object. It
42 llvm::raw_fd_ostream *dup();
  /external/llvm/include/llvm/Support/
ToolOutputFile.h 21 /// This class contains a raw_fd_ostream and adds a few extra features commonly
27 /// This class is declared before the raw_fd_ostream so that it is constructed
28 /// before the raw_fd_ostream is constructed and destructed after the
29 /// raw_fd_ostream is destructed. It installs cleanups in its constructor and
43 raw_fd_ostream OS;
46 /// This constructor's arguments are passed to to raw_fd_ostream's
53 /// Return the contained raw_fd_ostream.
54 raw_fd_ostream &os() { return OS; }
raw_ostream.h 332 class raw_fd_ostream : public raw_pwrite_stream { class in namespace:llvm
372 raw_fd_ostream(StringRef Filename, std::error_code &EC,
377 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
379 ~raw_fd_ostream() override;
413 /// Return the value of the flag in this raw_fd_ostream indicating whether an
  /frameworks/compile/libbcc/lib/Support/
OutputFile.cpp 74 llvm::raw_fd_ostream *OutputFile::dup() {
91 llvm::raw_fd_ostream *result =
92 new (std::nothrow) llvm::raw_fd_ostream(newfd, /* shouldClose */true);
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 22 raw_fd_ostream OS(Path, EC, sys::fs::F_None);
33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 46 void write(raw_fd_ostream &OS);
SampleProfWriter.h 80 raw_fd_ostream OS;
  /external/llvm/lib/Support/
raw_ostream.cpp 487 // raw_fd_ostream
512 raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC, function in class:raw_fd_ostream
514 : raw_fd_ostream(getFD(Filename, EC, Flags), true) {}
518 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) function in class:raw_fd_ostream
542 raw_fd_ostream::~raw_fd_ostream() {
566 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
616 void raw_fd_ostream::close()
    [all...]
Timer.cpp 59 return new raw_fd_ostream(2, false); // stderr.
61 return new raw_fd_ostream(1, false); // stdout.
68 raw_ostream *Result = new raw_fd_ostream(OutputFilename, EC,
76 return new raw_fd_ostream(2, false); // stderr.
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 58 llvm::raw_fd_ostream *OS = new llvm::raw_fd_ostream(
ModuleDependencyCollector.cpp 52 llvm::raw_fd_ostream OS(Dest, EC, llvm::sys::fs::F_Text);
  /external/llvm/lib/Analysis/
CFGPrinter.cpp 84 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
118 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
  /external/llvm/tools/llvm-cov/
TestingSupport.cpp 83 raw_fd_ostream OS(FD, true);
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 73 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
136 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 48 raw_fd_ostream Output(OutputFilename.data(), EC, sys::fs::F_None);
136 raw_fd_ostream &OS) {
189 raw_fd_ostream &OS) {
231 raw_fd_ostream OS(OutputFilename.data(), EC, sys::fs::F_Text);
  /external/clang/lib/Frontend/Rewrite/
FixItRewriter.cpp 89 std::unique_ptr<llvm::raw_fd_ostream> OS;
91 OS.reset(new llvm::raw_fd_ostream(fd, /*shouldClose=*/true));
93 OS.reset(new llvm::raw_fd_ostream(Filename, EC, llvm::sys::fs::F_None));
  /external/llvm/unittests/Support/
MemoryBufferTest.cpp 74 raw_fd_ostream OF(TestFD, true, /*unbuffered=*/true);
139 raw_fd_ostream OF(TestFD, true, !Reopen);
178 raw_fd_ostream OF(FD, true, /*unbuffered=*/true);
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 125 llvm::raw_fd_ostream infoOut(infoFile, EC, llvm::sys::fs::F_None);
151 llvm::raw_fd_ostream newOut(fd, /*shouldClose=*/true);
179 llvm::raw_fd_ostream Out(origFE->getName(), EC, llvm::sys::fs::F_None);
PlistReporter.cpp 60 llvm::raw_fd_ostream o(outPath, EC, llvm::sys::fs::F_Text);
  /external/clang/lib/AST/
InheritViz.cpp 150 llvm::raw_fd_ostream O(FD, true);
  /external/clang/unittests/Tooling/
RewriterTestContext.h 69 llvm::raw_fd_ostream OutStream(FD, true);
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 111 out = new raw_fd_ostream(OutputFilename, EC, sys::fs::F_None);
  /external/llvm/tools/lli/
OrcLazyJIT.cpp 96 raw_fd_ostream Out(M->getModuleIdentifier() + ".ll", EC,

Completed in 287 milliseconds

1 2 3