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

  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 29 class OutputFile : public File<FileBase::kWriteMode> {
32 OutputFile(const std::string &pFilename, unsigned pFlags = 0);
  /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/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...]
  /frameworks/compile/slang/
llvm-rs-cc.cpp 67 std::string OutputFile(OutputDir);
70 if (!OutputFile.empty() &&
71 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR)
72 OutputFile.append(1, OS_PATH_SEPARATOR);
75 OutputFile.append(PathSuffix);
76 OutputFile.append(1, OS_PATH_SEPARATOR);
82 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile));
84 OutputFile.append(
90 OutputFile.append(".d")
    [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 1951 milliseconds