/frameworks/compile/libbcc/include/bcc/Support/ |
OutputFile.h | 29 class OutputFile : public File<FileBase::kWriteMode> { 32 OutputFile(const std::string &pFilename, unsigned pFlags = 0);
|
/external/clang/include/clang/Frontend/ |
DependencyOutputOptions.h | 30 std::string OutputFile;
|
CompilerInstance.h | 128 struct OutputFile { 133 OutputFile(const std::string &filename, const std::string &tempFilename, 139 std::list<OutputFile> OutputFiles; 474 void addOutputFile(const OutputFile &OutFile);
|
FrontendOptions.h | 175 std::string OutputFile;
|
/frameworks/compile/libbcc/lib/Support/ |
OutputFile.cpp | 17 #include "bcc/Support/OutputFile.h" 27 OutputFile::OutputFile(const std::string &pFilename, unsigned pFlags) 30 ssize_t OutputFile::write(const void *pBuf, size_t count) { 37 ALOGW("OutputFile::write: count = %zu, buffer = %p", count, pBuf); 59 void OutputFile::truncate() { 74 llvm::raw_fd_ostream *OutputFile::dup() {
|
/external/chromium_org/tools/gn/ |
output_file.h | 15 class OutputFile { 17 OutputFile() : value_() {} 18 explicit OutputFile(const base::StringPiece& str) 30 bool operator==(const OutputFile& other) const { 33 bool operator!=(const OutputFile& other) const { 36 bool operator<(const OutputFile& other) const {
|
/external/clang/lib/Frontend/ |
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;
|
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());
|
DependencyFile.cpp | 35 std::string OutputFile; 50 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets), 170 llvm::sys::fs::remove(OutputFile, existed); 175 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err); 178 << OutputFile << Err;
|
FrontendActions.cpp | 69 if (CI.getFrontendOpts().OutputFile.empty()) 90 std::string OutputFile; 92 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS)) 97 return new PCHGenerator(CI.getPreprocessor(), OutputFile, 0, Sysroot, OS); 103 std::string &OutputFile, 114 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true, 120 OutputFile = CI.getFrontendOpts().OutputFile; 127 std::string OutputFile; 129 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS) [all...] |
ASTUnit.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
TextPathDiagnostics.cpp | 27 const std::string OutputFile; 32 : OutputFile(output), Diag(diag) {}
|
PlistDiagnostics.cpp | 33 const std::string OutputFile; 64 : OutputFile(output), 419 llvm::raw_fd_ostream o(OutputFile.c_str(), ErrMsg); 421 llvm::errs() << "warning: could not create file: " << OutputFile << '\n';
|
/external/llvm/tools/bugpoint/ |
ExecutionDriver.cpp | 296 std::string OutputFile, 331 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output-%%%%%%%"; 335 error_code EC = sys::fs::createUniqueFile(OutputFile, UniqueFile); 341 OutputFile = UniqueFile.str(); 348 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile, 352 return OutputFile; 368 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app); 374 return OutputFile; 381 std::string OutputFile, [all...] |
/external/chromium_org/tools/gen_keyboard_overlay_data/ |
gen_keyboard_overlay_data.py | 427 def OutputFile(outpath, snippet): 476 OutputFile(outpath, snippet)
|
/frameworks/compile/slang/ |
llvm-rs-cc.cpp | 334 std::string OutputFile(OutputDir); 337 if (!OutputFile.empty() && 338 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR) 339 OutputFile.append(1, OS_PATH_SEPARATOR); 344 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile)); 346 OutputFile.append( 352 OutputFile.append(".d"); 356 OutputFile.append(".S"); 360 OutputFile.append(".ll") [all...] |
slang_rs.cpp | 296 const char *InputFile, *OutputFile, *BCOutputFile, *DepOutputFile; 326 OutputFile = IOFileIter->second; 333 if (!setOutput(OutputFile))
|
/external/clang/include/clang/Serialization/ |
ASTWriter.h | 424 StringRef isysroot, const std::string &OutputFile); 479 StringRef isysroot, const std::string &OutputFile, 499 const std::string &OutputFile, 746 std::string OutputFile; 762 PCHGenerator(const Preprocessor &PP, StringRef OutputFile,
|