/external/llvm/lib/Support/ |
H A D | ToolOutputFile.cpp | 1 //===--- ToolOutputFile.cpp - Implement the tool_output_file class --------===// 10 // This implements the tool_output_file class. 19 tool_output_file::CleanupInstaller::CleanupInstaller(const char *filename) 26 tool_output_file::CleanupInstaller::~CleanupInstaller() { 39 tool_output_file::tool_output_file(const char *filename, std::string &ErrorInfo, function in class:tool_output_file 47 tool_output_file::tool_output_file(const char *Filename, int FD) function in class:tool_output_file
|
/external/llvm/include/llvm/Support/ |
H A D | ToolOutputFile.h | 10 // This file defines the tool_output_file class. 21 /// tool_output_file - This class contains a raw_fd_ostream and adds a 24 /// - The file is automatically deleted when the tool_output_file 26 class tool_output_file { class in namespace:llvm 47 /// tool_output_file - This constructor's arguments are passed to 49 tool_output_file(const char *filename, std::string &ErrorInfo, 52 tool_output_file(const char *Filename, int FD);
|
/external/llvm/lib/TableGen/ |
H A D | Main.cpp | 60 tool_output_file DepOut(DependFilename.c_str(), Error); 106 tool_output_file Out(OutputFilename.c_str(), Error);
|
/external/llvm/tools/llvm-as/ |
H A D | llvm-as.cpp | 72 OwningPtr<tool_output_file> Out(new tool_output_file(
|
/external/llvm/tools/bugpoint/ |
H A D | OptimizerDriver.cpp | 55 static bool writeProgramToFileAux(tool_output_file &Out, const Module *M) { 67 tool_output_file Out(Filename.c_str(), FD); 74 tool_output_file Out(Filename.c_str(), ErrInfo, sys::fs::F_Binary); 150 tool_output_file InFile(InputFilename.c_str(), InputFD);
|
H A D | ExtractFunction.cpp | 378 tool_output_file BlocksToNotExtractFile(Filename.c_str(), FD);
|
/external/llvm/utils/FileUpdate/ |
H A D | FileUpdate.cpp | 73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
|
/external/llvm/tools/llvm-dis/ |
H A D | llvm-dis.cpp | 171 OwningPtr<tool_output_file> Out(new tool_output_file(
|
/external/llvm/tools/llc/ |
H A D | llc.cpp | 100 static tool_output_file *GetOutputStream(const char *TargetName, 151 tool_output_file *FDOut = new tool_output_file(OutputFilename.c_str(), error, 309 OwningPtr<tool_output_file> Out
|
/external/llvm/tools/llvm-mc/ |
H A D | llvm-mc.cpp | 208 static tool_output_file *GetOutputStream() { 213 tool_output_file *Out = 214 new tool_output_file(OutputFilename.c_str(), Err, sys::fs::F_Binary); 242 static int AsLexInput(SourceMgr &SrcMgr, MCAsmInfo &MAI, tool_output_file *Out) { 416 OwningPtr<tool_output_file> Out(GetOutputStream());
|
/external/llvm/tools/llvm-link/ |
H A D | llvm-link.cpp | 109 tool_output_file Out(OutputFilename.c_str(), ErrorInfo, sys::fs::F_Binary);
|
/external/llvm/tools/lto/ |
H A D | LTOCodeGenerator.cpp | 170 tool_output_file Out(path, ErrInfo, sys::fs::F_Binary); 203 tool_output_file objFile(Filename.c_str(), FD);
|
/external/llvm/tools/llvm-extract/ |
H A D | llvm-extract.cpp | 268 tool_output_file Out(OutputFilename.c_str(), ErrorInfo, sys::fs::F_Binary);
|
/external/llvm/tools/opt/ |
H A D | opt.cpp | 604 OwningPtr<tool_output_file> Out; 615 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo, 681 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
|
/external/llvm/tools/llvm-stress/ |
H A D | llvm-stress.cpp | 698 OwningPtr<tool_output_file> Out; 704 Out.reset(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
|
/external/llvm/tools/llvm-ar/ |
H A D | llvm-ar.cpp | 741 tool_output_file Output(TemporaryOutput, TmpArchiveFD);
|