HomeSort by relevance Sort by last modified time
    Searched defs:OutputFile (Results 1 - 14 of 14) sorted by null

  /external/clang/include/clang/Frontend/
DependencyOutputOptions.h 30 std::string OutputFile;
CompilerInstance.h 120 struct OutputFile {
125 OutputFile(const std::string &filename, const std::string &tempFilename,
131 std::list<OutputFile> OutputFiles;
457 void addOutputFile(const OutputFile &OutFile);
FrontendOptions.h 142 std::string OutputFile;
  /external/clang/lib/Frontend/
DependencyGraph.cpp 31 std::string OutputFile;
46 DependencyGraphCallback(const Preprocessor *_PP, StringRef OutputFile,
48 : PP(_PP), OutputFile(OutputFile.str()), SysRoot(SysRoot.str()) { }
66 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
68 PP.addPPCallbacks(new DependencyGraphCallback(&PP, OutputFile, SysRoot));
103 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err);
106 << 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 34 std::string OutputFile;
49 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets),
164 llvm::sys::Path(OutputFile).eraseFromDisk();
169 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err);
172 << OutputFile << Err;
FrontendActions.cpp 62 if (CI.getFrontendOpts().OutputFile.empty())
83 std::string OutputFile;
85 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
90 return new PCHGenerator(CI.getPreprocessor(), OutputFile, 0, Sysroot, OS);
96 std::string &OutputFile,
107 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
113 OutputFile = CI.getFrontendOpts().OutputFile;
120 std::string OutputFile;
122 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 31 const std::string OutputFile;
64 : OutputFile(output), LangOpts(LO), SubPD(subPD), flushed(false),
397 llvm::raw_fd_ostream o(OutputFile.c_str(), ErrMsg);
399 llvm::errs() << "warning: could not create file: " << OutputFile << '\n';
512 FilesMade->push_back(OutputFile);
  /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...]
  /frameworks/compile/slang/
llvm-rs-cc.cpp 311 std::string OutputFile(OutputDir);
314 if (!OutputFile.empty() &&
315 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR)
316 OutputFile.append(1, OS_PATH_SEPARATOR);
321 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile));
323 OutputFile.append(
329 OutputFile.append(".d");
333 OutputFile.append(".S");
337 OutputFile.append(".ll")
    [all...]
slang_rs.cpp 284 const char *InputFile, *OutputFile, *BCOutputFile, *DepOutputFile;
314 OutputFile = IOFileIter->second;
321 if (!setOutput(OutputFile))
  /external/clang/include/clang/Serialization/
ASTWriter.h 399 const std::string &OutputFile);
450 StringRef isysroot, const std::string &OutputFile,
473 const std::string &OutputFile,
711 std::string OutputFile;
726 PCHGenerator(const Preprocessor &PP, StringRef OutputFile,

Completed in 192 milliseconds