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 38 mcld::raw_fd_ostream::raw_fd_ostream(const char *pFilename, function in class:mcld::raw_fd_ostream
41 : llvm::raw_fd_ostream(pFilename, pErrorInfo, pFlags),
46 mcld::raw_fd_ostream::raw_fd_ostream(int pFD, function in class:mcld::raw_fd_ostream
49 : llvm::raw_fd_ostream(pFD, pShouldClose, pUnbuffered),
54 mcld::raw_fd_ostream::~raw_fd_ostream()
58 void mcld::raw_fd_ostream::setColor(bool pEnable)
65 mcld::raw_fd_ostream::changeColor(enum llvm::raw_ostream::Colors pColor
    [all...]
ToolOutputFile.cpp 84 /// os - Return the containeed raw_fd_ostream.
86 llvm::raw_fd_ostream& ToolOutputFile::os()
92 m_pFdOstream = new llvm::raw_fd_ostream(m_FileHandle.handler(), false);
  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 17 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();
61 mcld::raw_fd_ostream &outs();
65 mcld::raw_fd_ostream &errs();
ToolOutputFile.h 42 /// os - Return the contained raw_fd_ostream
43 llvm::raw_fd_ostream& os();
70 llvm::raw_fd_ostream* m_pFdOstream;
  /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 /// 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.
54 /// os - Return the contained raw_fd_ostream.
55 raw_fd_ostream &os() { return OS; }
raw_ostream.h 313 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
315 class raw_fd_ostream : public raw_ostream { class in namespace:llvm
344 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
354 raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
357 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
359 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
361 ~raw_fd_ostream();
391 /// has_error - Return the value of the flag in this raw_fd_ostream indicating
  /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, ErrorInfo, sys::fs::F_None);
33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
  /external/llvm/include/llvm/ProfileData/
InstrProfWriter.h 45 void write(raw_fd_ostream &OS);
  /external/chromium_org/tools/clang/blink_gc_plugin/
JsonWriter.h 13 static JsonWriter* from(llvm::raw_fd_ostream* os) {
59 JsonWriter(llvm::raw_fd_ostream* os) : os_(*os) {}
69 llvm::raw_fd_ostream& os_;
  /external/llvm/lib/Support/
raw_ostream.cpp 426 // raw_fd_ostream
429 /// raw_fd_ostream - Open the specified file for writing. If an error
433 raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, function in class:raw_fd_ostream
466 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
468 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) function in class:raw_fd_ostream
487 raw_fd_ostream::~raw_fd_ostream() {
515 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size)
    [all...]
Timer.cpp 61 return new raw_fd_ostream(2, false); // stderr.
63 return new raw_fd_ostream(1, false); // stdout.
70 raw_ostream *Result = new raw_fd_ostream(
78 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.c_str(), ErrorInfo, llvm::sys::fs::F_Text);
  /external/llvm/lib/Analysis/
CFGPrinter.cpp 84 raw_fd_ostream File(Filename.c_str(), ErrorInfo, sys::fs::F_Text);
118 raw_fd_ostream File(Filename.c_str(), ErrorInfo, sys::fs::F_Text);
  /external/clang/include/clang/Frontend/
Utils.h 25 class raw_fd_ostream;
164 void CacheTokens(Preprocessor &PP, llvm::raw_fd_ostream* OS);
CompilerInstance.h 29 class raw_fd_ostream;
624 llvm::raw_fd_ostream *
632 llvm::raw_fd_ostream *
665 static llvm::raw_fd_ostream *
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 73 raw_fd_ostream File(Filename.c_str(), ErrorInfo, sys::fs::F_Text);
136 raw_fd_ostream File(Filename.c_str(), ErrorInfo, sys::fs::F_Text);
  /external/llvm/unittests/Support/
MemoryBufferTest.cpp 74 raw_fd_ostream OF(TestFD, true, /*unbuffered=*/true);
139 raw_fd_ostream OF(TestFD, true, !Reopen);
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 90 std::unique_ptr<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,
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 127 llvm::raw_fd_ostream infoOut(infoFile.c_str(), errMsg, llvm::sys::fs::F_None);
153 llvm::raw_fd_ostream newOut(fd, /*shouldClose=*/true);
183 llvm::raw_fd_ostream Out(origFE->getName(), errMsg, llvm::sys::fs::F_None);
PlistReporter.cpp 60 llvm::raw_fd_ostream o(outPath.c_str(), errMsg, llvm::sys::fs::F_Text);
  /external/clang/lib/AST/
InheritViz.cpp 151 llvm::raw_fd_ostream O(FD, true);
  /external/clang/unittests/Tooling/
RewriterTestContext.h 68 llvm::raw_fd_ostream OutStream(FD, true);

Completed in 1577 milliseconds

1 2 3