Searched refs:raw_fd_ostream (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Writer/
H A DBitWriter.cpp20 raw_fd_ostream OS(Path, ErrorInfo,
21 raw_fd_ostream::F_Binary);
32 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DToolOutputFile.h21 /// 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; }
H A Draw_ostream.h308 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
310 class raw_fd_ostream : public raw_ostream { class in namespace:llvm
341 /// F_Excl - When opening a file, this flag makes raw_fd_ostream
355 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
365 raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
368 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
370 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
372 ~raw_fd_ostream();
402 /// has_error - Return the value of the flag in this raw_fd_ostream indicating
H A DGraphWriter.h327 raw_fd_ostream O(Filename.c_str(), ErrorInfo);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Draw_ostream.cpp413 // raw_fd_ostream
416 /// raw_fd_ostream - Open the specified file for writing. If an error
420 raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, function in class:raw_fd_ostream
470 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
472 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) function in class:raw_fd_ostream
490 raw_fd_ostream::~raw_fd_ostream() {
518 void raw_fd_ostream
[all...]
H A DTimer.cpp60 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.
H A DFileOutputBuffer.cpp84 // to hand it off to raw_fd_ostream to close for us.
86 raw_fd_ostream Dummy(FD, /*shouldClose=*/true);
H A DLockFileManager.cpp90 raw_fd_ostream Out(UniqueLockFileID, /*shouldClose=*/true);
/macosx-10.9.5/llvmCore-3425.0.33/examples/BrainF/
H A DBrainFDriver.cpp110 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
111 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DCFGPrinter.cpp84 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
118 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
/macosx-10.9.5/llvmCore-3425.0.33/utils/FileUpdate/
H A DFileUpdate.cpp74 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/
H A DTargetMachineC.cpp179 raw_fd_ostream dest(Filename, error, raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h62 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-as/
H A Dllvm-as.cpp74 raw_fd_ostream::F_Binary));
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-link/
H A Dllvm-link.cpp121 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/tools/bugpoint/
H A DOptimizerDriver.cpp55 raw_fd_ostream::F_Binary);
136 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-dis/
H A Dllvm-dis.cpp173 raw_fd_ostream::F_Binary));
/macosx-10.9.5/llvmCore-3425.0.33/unittests/Support/
H A DPath.cpp303 raw_fd_ostream file(file_pathname.c_str(), ErrMsg,
304 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-extract/
H A Dllvm-extract.cpp221 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/MCParser/
H A DDarwinAsmParser.cpp517 OS = new raw_fd_ostream(SecureLogFile, Err, raw_fd_ostream::F_Append);
/macosx-10.9.5/llvmCore-3425.0.33/tools/opt/
H A Dopt.cpp544 raw_fd_ostream::F_Binary));
597 raw_fd_ostream::F_Binary));
/macosx-10.9.5/llvmCore-3425.0.33/tools/llc/
H A Dllc.cpp342 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-mc/
H A Dllvm-mc.cpp203 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/tools/lto/
H A DLTOCodeGenerator.cpp132 raw_fd_ostream::F_Binary);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp373 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
374 raw_fd_ostream::F_Binary);

Completed in 275 milliseconds

12