/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 | 31 OutputFile GetTargetOutputDir(const Target* target) const; 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_action_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(), 65 EXPECT_EQ(OutputFile("../../tools/gn/foo.o").value(), 70 EXPECT_EQ(OutputFile("../../tools/gn/foo.obj").value(), 75 EXPECT_EQ(OutputFile("nested/foo.o").value(), 81 EXPECT_EQ(OutputFile("/abs/rooted/foo.o").value(), 90 EXPECT_EQ(OutputFile("name.exe"), 95 EXPECT_EQ(OutputFile("obj/tools/gn/name.lib"),
|
ninja_helper.cc | 38 OutputFile NinjaHelper::GetTargetOutputDir(const Target* target) const { 39 OutputFile ret(target->settings()->toolchain_output_subdir()); 46 OutputFile NinjaHelper::GetNinjaFileForTarget(const Target* target) const { 47 OutputFile ret = GetTargetOutputDir(target); 53 OutputFile NinjaHelper::GetNinjaFileForToolchain( 55 OutputFile ret; 64 OutputFile NinjaHelper::GetOutputFileForSource( 95 return OutputFile(source.value()); 106 return OutputFile( 112 OutputFile ret(build_to_src_no_last_slash()) [all...] |
ninja_binary_target_writer.cc | 88 std::vector<OutputFile> obj_files; 132 std::vector<OutputFile>* object_files) { 156 OutputFile output_file = helper_.GetOutputFileForSource( 170 const std::vector<OutputFile>& object_files) { 174 OutputFile windows_manifest; 189 OutputFile external_output_file = helper_.GetTargetOutputFile(target_); 195 OutputFile internal_output_file; 244 const OutputFile& windows_manifest) { 301 const OutputFile& external_output_file, 302 const OutputFile& internal_output_file [all...] |
ninja_copy_target_writer.cc | 24 std::vector<OutputFile> output_files; 35 OutputFile output_file(template_result[0]);
|
path_output.h | 16 class OutputFile; 50 void WriteFile(std::ostream& out, const OutputFile& file) const;
|
settings.h | 70 const OutputFile& toolchain_output_subdir() const { 117 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,
|
/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() {
|
Android.mk | 30 OutputFile.cpp \
|
/external/llvm/utils/ |
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,
|
/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...] |
slang.cpp | 114 OpenOutputFile(const char *OutputFile, 118 slangAssert((OutputFile != NULL) && (Error != NULL) && 122 llvm::sys::path::parent_path(OutputFile), Error)) { 124 new llvm::tool_output_file(OutputFile, *Error, Flags); 131 << OutputFile << *Error; 332 bool Slang::setOutput(const char *OutputFile) { 340 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, &Error, 349 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, 363 mOutputFileName = OutputFile; 368 bool Slang::setDepOutput(const char *OutputFile) { [all...] |
/external/clang/lib/Frontend/ |
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());
|
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;
|
/external/clang/include/clang/Frontend/ |
DependencyOutputOptions.h | 32 std::string 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/libbcc/include/bcc/Renderscript/ |
RSExecutable.h | 32 class OutputFile; 95 void dumpDisassembly(OutputFile &pOutput) const;
|
/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);
|