HomeSort by relevance Sort by last modified time
    Searched refs:raw_fd_ostream (Results 1 - 25 of 74) 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/ProfileData/
InstrProfWriter.h 43 void write(raw_fd_ostream &OS);
45 void writeText(raw_fd_ostream &OS);
48 InstrProfSymtab &Symtab, raw_fd_ostream &OS);
  /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 344 class raw_fd_ostream : public raw_pwrite_stream { class in namespace:llvm
382 raw_fd_ostream(StringRef Filename, std::error_code &EC,
387 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
389 ~raw_fd_ostream() override;
411 /// 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/tools/dsymutil/
MachOUtils.h 17 class raw_fd_ostream;
33 raw_fd_ostream &OutFile);
  /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/unittests/Support/
raw_pwrite_stream_test.cpp 39 raw_fd_ostream OS(FD, true);
57 raw_fd_ostream OS(FD, true);
ReplaceFileTest.cpp 38 raw_fd_ostream OS(FD, ShouldClose);
MemoryBufferTest.cpp 74 raw_fd_ostream OF(TestFD, true, /*unbuffered=*/true);
139 raw_fd_ostream OF(TestFD, true, !Reopen);
185 raw_fd_ostream OF(FD, true, /*unbuffered=*/true);
  /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) {
602 void raw_fd_ostream::close()
    [all...]
Timer.cpp 54 std::unique_ptr<raw_fd_ostream> llvm::CreateInfoOutputFile() {
57 return llvm::make_unique<raw_fd_ostream>(2, false); // stderr.
59 return llvm::make_unique<raw_fd_ostream>(1, false); // stdout.
66 auto Result = llvm::make_unique<raw_fd_ostream>(
73 return llvm::make_unique<raw_fd_ostream>(2, false); // stderr.
  /external/llvm/include/llvm/ADT/
Statistic.h 35 class raw_fd_ostream;
176 std::unique_ptr<raw_fd_ostream> CreateInfoOutputFile();
  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 87 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 103 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
166 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
  /external/llvm/lib/Object/
ArchiveWriter.cpp 79 static void printWithSpacePadding(raw_fd_ostream &OS, T Data, unsigned Size,
102 static void printRestOfMemberHeader(raw_fd_ostream &Out,
114 static void printGNUSmallMemberHeader(raw_fd_ostream &Out, StringRef Name,
122 static void printBSDMemberHeader(raw_fd_ostream &Out, StringRef Name,
143 printMemberHeader(raw_fd_ostream &Out, object::Archive::Kind Kind, bool Thin,
180 static void writeStringTable(raw_fd_ostream &Out, StringRef ArcName,
223 writeSymbolTable(raw_fd_ostream &Out, object::Archive::Kind Kind,
315 raw_fd_ostream &Out = Output.os();
  /external/clang/lib/Frontend/Rewrite/
FixItRewriter.cpp 96 std::unique_ptr<llvm::raw_fd_ostream> OS;
98 OS.reset(new llvm::raw_fd_ostream(fd, /*shouldClose=*/true));
100 OS.reset(new llvm::raw_fd_ostream(Filename, EC, llvm::sys::fs::F_None));
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 171 void InstrProfWriter::write(raw_fd_ostream &OS) {
189 raw_fd_ostream &OS) {
226 void InstrProfWriter::writeText(raw_fd_ostream &OS) {
  /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);

Completed in 773 milliseconds

1 2 3