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

  /external/chromium_org/tools/gn/
output_file.cc 10 OutputFile::OutputFile() : value_() {
13 OutputFile::OutputFile(const base::StringPiece& str)
17 OutputFile::OutputFile(const BuildSettings* build_settings,
23 OutputFile::~OutputFile() {
26 SourceFile OutputFile::AsSourceFile(const BuildSettings* build_settings) const {
32 SourceDir OutputFile::AsSourceDir(const BuildSettings* build_settings) const
    [all...]
output_file.h 17 class OutputFile {
19 OutputFile();
20 explicit OutputFile(const base::StringPiece& str);
21 OutputFile(const BuildSettings* build_settings,
23 ~OutputFile();
29 // The *Dir version requires that the current OutputFile ends in a slash, and
34 bool operator==(const OutputFile& other) const {
37 bool operator!=(const OutputFile& other) const {
40 bool operator<(const OutputFile& other) const {
51 template<> struct hash<OutputFile> {
    [all...]
  /external/clang/include/clang/Frontend/
DependencyOutputOptions.h 32 std::string OutputFile;
CompilerInstance.h 143 struct OutputFile {
148 OutputFile(const std::string &filename, const std::string &tempFilename,
154 std::list<OutputFile> OutputFiles;
516 void addOutputFile(const OutputFile &OutFile);
FrontendOptions.h 202 std::string OutputFile;
  /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()) { }
62 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
64 PP.addPPCallbacks(new DependencyGraphCallback(&PP, OutputFile, SysRoot));
100 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err, llvm::sys::fs::F_Text);
103 << OutputFile << Err;
HeaderIncludeGen.cpp 21 raw_ostream *OutputFile;
33 : SM(PP->getSourceManager()), OutputFile(OutputFile_),
40 delete OutputFile;
52 raw_ostream *OutputFile = MSStyle ? &llvm::outs() : &llvm::errs();
68 OutputFile = OS;
74 OutputFile, OwnsOutputFile,
133 OutputFile->write(Msg.data(), Msg.size());
DependencyFile.cpp 136 std::string OutputFile;
150 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets),
296 llvm::sys::fs::remove(OutputFile);
301 llvm::raw_fd_ostream OS(OutputFile.c_str(), Err, llvm::sys::fs::F_Text);
304 << OutputFile << Err;
FrontendActions.cpp 79 std::string OutputFile;
81 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
86 return new PCHGenerator(CI.getPreprocessor(), OutputFile, nullptr, Sysroot,
93 std::string &OutputFile,
104 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
110 OutputFile = CI.getFrontendOpts().OutputFile;
117 std::string OutputFile;
119 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
122 return new PCHGenerator(CI.getPreprocessor(), OutputFile, Module,
    [all...]
ASTUnit.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 31 const std::string OutputFile;
63 : OutputFile(output),
342 llvm::raw_fd_ostream o(OutputFile.c_str(), ErrMsg, llvm::sys::fs::F_Text);
344 llvm::errs() << "warning: could not create file: " << OutputFile << '\n';
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 60 FILE *OutputFile;
65 OutputFile = fopen(OutputName, "a");
66 if (!OutputFile)
69 RetVal = writeFile(OutputFile);
71 fclose(OutputFile);
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 296 std::string OutputFile,
330 if (OutputFile.empty()) OutputFile = OutputPrefix + "-execution-output-%%%%%%%";
334 std::error_code EC = sys::fs::createUniqueFile(OutputFile, UniqueFile);
340 OutputFile = UniqueFile.str();
347 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
351 return OutputFile;
367 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
373 return OutputFile;
380 std::string OutputFile,
    [all...]
  /external/chromium_org/tools/gen_keyboard_overlay_data/
gen_keyboard_overlay_data.py 411 def OutputFile(outpath, snippet):
460 OutputFile(outpath, snippet)
  /external/clang/include/clang/Serialization/
ASTWriter.h 453 StringRef isysroot, const std::string &OutputFile);
512 StringRef isysroot, const std::string &OutputFile,
532 const std::string &OutputFile,
784 std::string OutputFile;
800 PCHGenerator(const Preprocessor &PP, StringRef OutputFile,

Completed in 298 milliseconds