/frameworks/compile/slang/ |
D | llvm-rs-cc.cpp | 67 std::string OutputFile(OutputDir); in DetermineOutputFile() local 70 if (!OutputFile.empty() && in DetermineOutputFile() 71 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR) in DetermineOutputFile() 72 OutputFile.append(1, OS_PATH_SEPARATOR); in DetermineOutputFile() 75 OutputFile.append(PathSuffix); in DetermineOutputFile() 76 OutputFile.append(1, OS_PATH_SEPARATOR); in DetermineOutputFile() 82 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile)); in DetermineOutputFile() 84 OutputFile.append( in DetermineOutputFile() 90 OutputFile.append(".d"); in DetermineOutputFile() 94 OutputFile.append(".S"); in DetermineOutputFile() [all …]
|
D | slang.cpp | 114 OpenOutputFile(const char *OutputFile, in OpenOutputFile() argument 118 slangAssert((OutputFile != NULL) && (Error != NULL) && in OpenOutputFile() 122 llvm::sys::path::parent_path(OutputFile), Error)) { in OpenOutputFile() 124 new llvm::tool_output_file(OutputFile, *Error, Flags); in OpenOutputFile() 131 << OutputFile << *Error; in OpenOutputFile() 332 bool Slang::setOutput(const char *OutputFile) { in setOutput() argument 340 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, &Error, in setOutput() 349 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, in setOutput() 363 mOutputFileName = OutputFile; in setOutput() 368 bool Slang::setDepOutput(const char *OutputFile) { in setDepOutput() argument [all …]
|
D | slang.h | 195 bool setOutput(const char *OutputFile); 199 void setOutput32(const char *OutputFile) { in setOutput32() argument 200 mOutput32FileName = OutputFile; in setOutput32() 211 bool setDepOutput(const char *OutputFile);
|
/frameworks/compile/libbcc/lib/Support/ |
D | OutputFile.cpp | 27 OutputFile::OutputFile(const std::string &pFilename, unsigned pFlags) in OutputFile() function in OutputFile 30 ssize_t OutputFile::write(const void *pBuf, size_t count) { in write() 59 void OutputFile::truncate() { in truncate() 74 llvm::raw_fd_ostream *OutputFile::dup() { in dup()
|
D | Android.mk | 30 OutputFile.cpp \
|
D | Disassembler.cpp | 186 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple, in Disassemble() 220 bcc::DisassembleResult bcc::Disassemble(OutputFile &pOutput, in Disassemble()
|
/frameworks/compile/libbcc/include/bcc/Support/ |
D | OutputFile.h | 29 class OutputFile : public File<FileBase::kWriteMode> { 32 OutputFile(const std::string &pFilename, unsigned pFlags = 0);
|
D | Disassembler.h | 29 class OutputFile; variable 46 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple,
|
/frameworks/compile/libbcc/include/bcc/Renderscript/ |
D | RSExecutable.h | 32 class OutputFile; variable 95 void dumpDisassembly(OutputFile &pOutput) const;
|
D | RSInfo.h | 40 class OutputFile; variable 208 bool write(OutputFile &pOutput);
|
/frameworks/compile/libbcc/include/bcc/ |
D | Compiler.h | 37 class OutputFile; variable 103 enum ErrorCode compile(Script &pScript, OutputFile &pResult,
|
/frameworks/compile/libbcc/lib/Renderscript/ |
D | RSCompilerDriver.cpp | 270 OutputFile output_file(pOutputPath, in compileScript() 297 OutputFile *ir_file = NULL; in compileScript() 302 ir_file = new OutputFile(path.string(), FileBase::kTruncate); in compileScript() 324 OutputFile info_file(info_path.string(), FileBase::kTruncate); in compileScript()
|
D | RSInfoWriter.cpp | 116 inline bool helper_write_list(OutputFile &pOutput, in helper_write_list() 144 bool RSInfo::write(OutputFile &pOutput) { in write()
|
D | RSExecutable.cpp | 133 OutputFile info_file(info_path.string(), FileBase::kTruncate); in syncInfo() 162 void RSExecutable::dumpDisassembly(OutputFile &pOutput) const { in dumpDisassembly()
|
/frameworks/compile/libbcc/lib/Core/ |
D | Compiler.cpp | 298 OutputFile &pResult, in compile()
|