/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 {
|
ninja_binary_target_writer.h | 24 typedef std::set<OutputFile> OutputFileSet; 27 void WriteSources(std::vector<OutputFile>* object_files); 28 void WriteLinkerStuff(const std::vector<OutputFile>& object_files); 30 const OutputFile& windows_manifest); 34 void WriteLinkCommand(const OutputFile& external_output_file, 35 const OutputFile& internal_output_file, 36 const std::vector<OutputFile>& object_files); 39 void WriteSourceSetStamp(const std::vector<OutputFile>& object_files); 43 void GetDeps(std::set<OutputFile>* extra_object_files, 52 std::set<OutputFile>* extra_object_files [all...] |
ninja_helper.h | 35 OutputFile GetNinjaFileForTarget(const Target* target) const; 38 OutputFile GetNinjaFileForToolchain(const Settings* settings) const; 42 OutputFile GetOutputFileForSource(const Target* target, 51 OutputFile GetTargetOutputFile(const Target* target) const;
|
ninja_script_target_writer.h | 15 class OutputFile; 52 std::vector<OutputFile>* output_files); 61 void WriteStamp(const std::vector<OutputFile>& output_files); 68 std::vector<OutputFile>* output_files);
|
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"),
|
ninja_binary_target_writer.cc | 101 std::vector<OutputFile> obj_files; 145 std::vector<OutputFile>* object_files) { 163 OutputFile output_file = helper_.GetOutputFileForSource( 177 const std::vector<OutputFile>& object_files) { 181 OutputFile windows_manifest; 196 OutputFile external_output_file = helper_.GetTargetOutputFile(target_); 202 OutputFile internal_output_file; 205 internal_output_file = OutputFile(target_->label().name() + ".dll"); 248 const OutputFile& windows_manifest) { 305 const OutputFile& external_output_file [all...] |
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( 92 return OutputFile(); 99 OutputFile ret(target->settings()->toolchain_output_subdir()); 114 OutputFile NinjaHelper::GetTargetOutputFile(const Target* target) const { 115 OutputFile ret;
|
ninja_copy_target_writer.cc | 24 std::vector<OutputFile> output_files; 35 OutputFile output_file(template_result[0]);
|
path_output.h | 16 class OutputFile; 61 void WriteFile(std::ostream& out, const OutputFile& file) const;
|
settings.h | 68 const OutputFile& toolchain_output_subdir() const { 115 OutputFile toolchain_output_subdir_;
|
/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;
|
/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...] |
/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;
|