/frameworks/compile/libbcc/include/bcc/Support/ |
OutputFile.h | 29 class OutputFile : public File<FileBase::kWriteMode> { 33 // an OutputFile returned. The filename will be pFileTemplate with 35 static OutputFile *CreateTemporary(const std::string &pFileTemplate, 38 OutputFile(const std::string &pFilename, unsigned pFlags = 0);
|
Disassembler.h | 29 class OutputFile; 46 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple,
|
/external/llvm/utils/ |
llvm-native-gcc | 36 $OutputFile = $ARGV[$i + 1]; 108 my ($BCFile, $Backend, $OutputFile) = @_; 113 $GeneratedCode = "${OutputFile}.c"; 120 $GeneratedCode = "${OutputFile}.s"; 128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs"; 134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_; 139 my $BCFile = "${OutputFile}.llvm.bc"; 141 run "mv ${OutputFile} $BCFile"; 143 run "mv ${OutputFile}.bc $BCFile"; 147 $GeneratedCode = "${OutputFile}.cbe.c" [all...] |
llvm-native-gxx | 36 $OutputFile = $ARGV[$i + 1]; 108 my ($BCFile, $Backend, $OutputFile) = @_; 113 $GeneratedCode = "${OutputFile}.c"; 120 $GeneratedCode = "${OutputFile}.s"; 128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs"; 134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_; 139 my $BCFile = "${OutputFile}.llvm.bc"; 141 run "mv ${OutputFile} $BCFile"; 143 run "mv ${OutputFile}.bc $BCFile"; 147 $GeneratedCode = "${OutputFile}.cbe.c" [all...] |
/frameworks/compile/libbcc/lib/Support/ |
OutputFile.cpp | 17 #include "bcc/Support/OutputFile.h" 27 OutputFile *OutputFile::CreateTemporary(const std::string &pFileTemplate, 31 OutputFile *result = NULL; 38 "OutputFile::CreateTemporary()!", pFileTemplate.c_str()); 57 // Create result OutputFile. Temporary file is always truncated. 58 result = new (std::nothrow) OutputFile(tmp_filename, 61 ALOGE("Out of memory when creates OutputFile for %s!", tmp_filename); 80 OutputFile::OutputFile(const std::string &pFilename, unsigned pFlags [all...] |
Android.mk | 31 OutputFile.cpp \
|
/external/clang/lib/Serialization/ |
GeneratePCH.cpp | 28 StringRef OutputFile, 32 : PP(PP), OutputFile(OutputFile), Module(Module), 46 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot);
|
/external/clang/lib/StaticAnalyzer/Frontend/ |
FrontendActions.cpp | 19 CI.getFrontendOpts().OutputFile,
|
/external/clang/lib/Frontend/ |
HeaderIncludeGen.cpp | 21 raw_ostream *OutputFile; 32 : SM(PP->getSourceManager()), OutputFile(OutputFile_), 39 delete OutputFile; 50 raw_ostream *OutputFile = &llvm::errs(); 65 OutputFile = OS; 71 OutputFile, OwnsOutputFile, 124 OutputFile->write(Msg.data(), Msg.size());
|
DependencyGraph.cpp | 31 std::string OutputFile; 45 DependencyGraphCallback(const Preprocessor *_PP, StringRef OutputFile, 47 : PP(_PP), OutputFile(OutputFile.str()), SysRoot(SysRoot.str()) { } 66 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile, 68 PP.addPPCallbacks(new DependencyGraphCallback(&PP, OutputFile, SysRoot)); 104 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err); 107 << OutputFile << Err;
|
FrontendActions.cpp | 67 if (CI.getFrontendOpts().OutputFile.empty()) 88 std::string OutputFile; 90 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS)) 95 return new PCHGenerator(CI.getPreprocessor(), OutputFile, 0, Sysroot, OS); 101 std::string &OutputFile, 112 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true, 118 OutputFile = CI.getFrontendOpts().OutputFile; 125 std::string OutputFile; 127 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS) [all...] |
DependencyFile.cpp | 34 std::string OutputFile; 49 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets), 166 llvm::sys::Path(OutputFile).eraseFromDisk(); 171 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err); 174 << OutputFile << Err;
|
/external/clang/include/clang/Frontend/ |
DependencyOutputOptions.h | 30 std::string OutputFile;
|
FrontendActions.h | 96 std::string &OutputFile, 123 std::string &OutputFile,
|
CompilerInstance.h | 128 struct OutputFile { 133 OutputFile(const std::string &filename, const std::string &tempFilename, 139 std::list<OutputFile> OutputFiles; 471 void addOutputFile(const OutputFile &OutFile);
|
Utils.h | 77 void AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
|
/frameworks/compile/slang/ |
slang.cpp | 119 OpenOutputFile(const char *OutputFile, 123 slangAssert((OutputFile != NULL) && (Error != NULL) && 127 llvm::sys::path::parent_path(OutputFile), Error)) { 129 new llvm::tool_output_file(OutputFile, *Error, Flags); 136 << OutputFile << *Error; 334 bool Slang::setOutput(const char *OutputFile) { 335 llvm::sys::Path OutputFilePath(OutputFile); 343 OS = OpenOutputFile(OutputFile, 0, &Error, mDiagEngine); 351 OS = OpenOutputFile(OutputFile, llvm::raw_fd_ostream::F_Binary, 365 mOutputFileName = OutputFile; [all...] |
llvm-rs-cc.cpp | 332 std::string OutputFile(OutputDir); 335 if (!OutputFile.empty() && 336 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR) 337 OutputFile.append(1, OS_PATH_SEPARATOR); 342 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile)); 344 OutputFile.append( 350 OutputFile.append(".d"); 354 OutputFile.append(".S"); 358 OutputFile.append(".ll") [all...] |
/external/llvm/tools/bugpoint/ |
ExecutionDriver.cpp | 294 std::string OutputFile, 326 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output"; 329 sys::Path uniqueFile(OutputFile); 335 OutputFile = uniqueFile.str(); 342 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile, 346 return OutputFile; 362 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app); 368 return OutputFile; 375 std::string OutputFile, [all...] |
ToolRunner.cpp | 187 const std::string &OutputFile, 200 const std::string &OutputFile, 233 sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile), 277 const std::string &OutputFile, 333 const std::string &OutputFile, 346 const std::string &OutputFile, 367 &ProgramArgs[0], sys::Path(InputFile), sys::Path(OutputFile), 368 sys::Path(OutputFile), Timeout, MemoryLimit, Error); 498 const std::string &OutputFile, [all...] |
ToolRunner.h | 58 /// Output is captured to the specified OutputFile location. The SharedLibs 66 const std::string &OutputFile, 77 std::string &OutputFile, 144 const std::string &OutputFile, 179 const std::string &OutputFile, 227 const std::string &OutputFile,
|
/external/clang/lib/StaticAnalyzer/Core/ |
TextPathDiagnostics.cpp | 27 const std::string OutputFile; 32 : OutputFile(output), Diag(diag) {}
|
/frameworks/compile/libbcc/include/bcc/ |
Compiler.h | 32 class OutputFile; 95 enum ErrorCode compile(Script &pScript, OutputFile &pResult);
|
/frameworks/compile/libbcc/include/bcc/Renderscript/ |
RSExecutable.h | 32 class OutputFile; 95 void dumpDisassembly(OutputFile &pOutput) const;
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSCompilerDriver.cpp | 33 #include "bcc/Support/OutputFile.h" 243 OutputFile *output_file = new (std::nothrow) OutputFile(pOutputPath, flags); 310 OutputFile *disassembly_output = 311 new (std::nothrow) OutputFile(DEBUG_DISASSEMBLER_FILE,
|