HomeSort by relevance Sort by last modified time
    Searched refs:OutputFile (Results 1 - 25 of 58) sorted by null

1 2 3

  /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 {
ninja_target_writer.h 46 std::vector<OutputFile>* output_files);
49 void WriteSources(std::vector<OutputFile>* object_files);
50 void WriteLinkerStuff(const std::vector<OutputFile>& object_files);
53 void WriteLinkCommand(const OutputFile& external_output_file,
54 const OutputFile& internal_output_file,
55 const std::vector<OutputFile>& object_files);
ninja_helper.h 34 OutputFile GetNinjaFileForTarget(const Target* target) const;
37 OutputFile GetNinjaFileForToolchain(const Settings* settings) const;
41 OutputFile GetOutputFileForSource(const Target* target,
50 OutputFile GetTargetOutputFile(const Target* target) const;
ninja_helper_unittest.cc 46 EXPECT_EQ(OutputFile("obj/tools/gn/name.ninja").value(),
55 EXPECT_EQ(OutputFile("obj/tools/gn/name.foo.obj").value(),
64 EXPECT_EQ(OutputFile("name.exe"),
69 EXPECT_EQ(OutputFile("obj/tools/gn/name.lib"),
path_output.h 16 class OutputFile;
55 void WriteFile(std::ostream& out, const OutputFile& file) const;
ninja_helper.cc 42 OutputFile NinjaHelper::GetNinjaFileForTarget(const Target* target) const {
43 OutputFile ret(target->settings()->toolchain_output_subdir());
52 OutputFile NinjaHelper::GetNinjaFileForToolchain(
54 OutputFile ret;
63 OutputFile NinjaHelper::GetOutputFileForSource(
91 return OutputFile();
96 OutputFile ret(kObjectDirNoSlash);
110 OutputFile NinjaHelper::GetTargetOutputFile(const Target* target) const {
111 OutputFile ret;
settings.h 61 const OutputFile& toolchain_output_subdir() const {
107 OutputFile toolchain_output_subdir_;
ninja_target_writer.cc 91 std::vector<OutputFile> obj_files;
144 std::vector<OutputFile> dest_files;
153 OutputFile dest_file(relative_dest_dir);
251 std::vector<OutputFile> output_files;
259 OutputFile output_path(
305 std::vector<OutputFile>* output_files) {
329 OutputFile output_path(output_template_result[out_i]);
345 // OutputFile object by putting a non-output-relative path in it to signal
389 std::vector<OutputFile>* object_files) {
404 OutputFile output_file = helper_.GetOutputFileForSource
    [all...]
  /frameworks/compile/libbcc/include/bcc/Support/
OutputFile.h 29 class OutputFile : public File<FileBase::kWriteMode> {
32 OutputFile(const std::string &pFilename, unsigned pFlags = 0);
Disassembler.h 29 class OutputFile;
46 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple,
  /external/llvm/utils/
llvm-native-gcc 36 $OutputFile = $ARGV[$i + 1];
108 my ($BCFile, $Backend, $OutputFile) = @_;
113 $GeneratedCode = "${OutputFile}.c";
120 $GeneratedCode = "${OutputFile}.s";
128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs";
134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_;
139 my $BCFile = "${OutputFile}.llvm.bc";
141 run "mv ${OutputFile} $BCFile";
143 run "mv ${OutputFile}.bc $BCFile";
147 $GeneratedCode = "${OutputFile}.cbe.c"
    [all...]
llvm-native-gxx 36 $OutputFile = $ARGV[$i + 1];
108 my ($BCFile, $Backend, $OutputFile) = @_;
113 $GeneratedCode = "${OutputFile}.c";
120 $GeneratedCode = "${OutputFile}.s";
128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs";
134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_;
139 my $BCFile = "${OutputFile}.llvm.bc";
141 run "mv ${OutputFile} $BCFile";
143 run "mv ${OutputFile}.bc $BCFile";
147 $GeneratedCode = "${OutputFile}.cbe.c"
    [all...]
  /external/clang/lib/Serialization/
GeneratePCH.cpp 28 StringRef OutputFile,
32 : PP(PP), OutputFile(OutputFile), Module(Module),
53 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
  /external/clang/lib/StaticAnalyzer/Frontend/
FrontendActions.cpp 19 CI.getFrontendOpts().OutputFile,
  /external/clang/lib/Frontend/
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());
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;
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...]
  /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/clang/include/clang/Frontend/
DependencyOutputOptions.h 30 std::string OutputFile;
  /frameworks/compile/slang/
slang.cpp 119 OpenOutputFile(const char *OutputFile,
123 slangAssert((OutputFile != NULL) && (Error != NULL) &&
127 llvm::sys::path::parent_path(OutputFile), Error)) {
129 new llvm::tool_output_file(OutputFile, *Error, Flags);
136 << OutputFile << *Error;
336 bool Slang::setOutput(const char *OutputFile) {
344 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, &Error,
353 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Binary,
367 mOutputFileName = OutputFile;
372 bool Slang::setDepOutput(const char *OutputFile) {
    [all...]
llvm-rs-cc.cpp 333 std::string OutputFile(OutputDir);
336 if (!OutputFile.empty() &&
337 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR)
338 OutputFile.append(1, OS_PATH_SEPARATOR);
343 OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile));
345 OutputFile.append(
351 OutputFile.append(".d");
355 OutputFile.append(".S");
359 OutputFile.append(".ll")
    [all...]
  /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/clang/lib/StaticAnalyzer/Core/
TextPathDiagnostics.cpp 27 const std::string OutputFile;
32 : OutputFile(output), Diag(diag) {}
  /frameworks/compile/libbcc/include/bcc/
Compiler.h 32 class OutputFile;
98 enum ErrorCode compile(Script &pScript, OutputFile &pResult,
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSExecutable.h 32 class OutputFile;
95 void dumpDisassembly(OutputFile &pOutput) const;

Completed in 1786 milliseconds

1 2 3