/aosp12/frameworks/compile/slang/ |
H A D | llvm-rs-cc.cpp | 77 std::string OutputFile(OutputDir); in DetermineOutputFile() local 80 if (!OutputFile.empty() && in DetermineOutputFile() 81 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR) in DetermineOutputFile() 85 OutputFile.append(PathSuffix); in DetermineOutputFile() 94 OutputFile.append( in DetermineOutputFile() 100 OutputFile.append(".d"); in DetermineOutputFile() 104 OutputFile.append(".S"); in DetermineOutputFile() 108 OutputFile.append(".ll"); in DetermineOutputFile() 112 OutputFile.append(".o"); in DetermineOutputFile() 116 OutputFile.append(".bc"); in DetermineOutputFile() [all …]
|
H A D | slang.cpp | 132 OpenOutputFile(const char *OutputFile, in OpenOutputFile() argument 136 slangAssert((OutputFile != nullptr) && in OpenOutputFile() 140 llvm::sys::path::parent_path(OutputFile)); in OpenOutputFile() 142 return llvm::make_unique<llvm::tool_output_file>(OutputFile, EC, Flags); in OpenOutputFile() 147 << OutputFile << EC.message(); in OpenOutputFile() 308 bool Slang::setOutput(const char *OutputFile) { in setOutput() argument 337 mOutputFileName = OutputFile; in setOutput() 342 bool Slang::setDepOutput(const char *OutputFile) { in setDepOutput() argument 345 mDOS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine); in setDepOutput() 349 mDepOutputFileName = OutputFile; in setDepOutput() [all …]
|
H A D | slang.h | 242 bool setOutput(const char *OutputFile); 244 bool setDepOutput(const char *OutputFile);
|
/aosp12/build/soong/cc/ |
H A D | prebuilt_test.go | 185 assertString(t, shared.OutputFile().Path().Base(), "libtest.so") 199 assertString(t, static.OutputFile().Path().Base(), "libf.a") 222 assertString(t, shared.OutputFile().Path().Base(), "libtest.so") 225 assertString(t, static.OutputFile().Path().Base(), "libf.a") 249 assertString(t, static.OutputFile().Path().Base(), "libfoo.a") 252 assertString(t, shared.OutputFile().Path().Base(), "libbar.so") 270 assertString(t, shared.OutputFile().Path().Base(), "libbar.so") 353 assertString(t, static.OutputFile().Path().Base(), "libf.a") 359 assertString(t, static2.OutputFile().Path().Base(), "libf.a") 372 assertString(t, static.OutputFile().Path().Base(), "libf.hwasan.a") [all …]
|
H A D | vendor_snapshot.go | 206 return sanitizable.OutputFile().Valid() && !image.private(m) 209 if !sanitizable.OutputFile().Valid() { 224 return m.OutputFile().Valid() 404 libPath := m.OutputFile().Path() 430 binPath := m.OutputFile().Path() 437 objPath := m.OutputFile().Path()
|
H A D | androidmk.go | 76 OutputFile: c.outputFile, 266 _, _, ext := android.SplitFileExt(entries.OutputFile.Path().Base()) 320 out := entries.OutputFile.Path() 442 _, suffix, _ := android.SplitFileExt(entries.OutputFile.Path().Base()) 454 entries.OutputFile = android.OptionalPathForPath(installer.path) 571 out := entries.OutputFile.Path()
|
H A D | coverage.go | 147 deps.WholeStaticLibs = append(deps.WholeStaticLibs, coverage.OutputFile().Path()) 154 deps.WholeStaticLibs = append(deps.WholeStaticLibs, coverage.OutputFile().Path())
|
H A D | vndk.go | 540 OutputFile: android.OptionalPathForPath(txt.outputFile), 568 func (txt *vndkLibrariesTxt) OutputFile() android.OutputPath { func 606 … (!installable(m, apexInfo) && !m.IsLlndk()) || m.IsSnapshotPrebuilt() || !m.OutputFile().Valid() { 798 ctx, m.OutputFile(), filepath.Join(configsDir, m.Name())))
|
/aosp12/build/make/tools/releasetools/ |
H A D | add_img_to_target_files | 89 class OutputFile(object): 205 block_list = OutputFile( 217 img = OutputFile(output_zip, OPTIONS.input_tmp, "IMAGES", 223 block_list = OutputFile( 239 block_list = OutputFile( 255 block_list = OutputFile( 271 block_list = OutputFile( 514 img = OutputFile( 528 img = OutputFile( 530 bpt = OutputFile( [all …]
|
H A D | add_img_to_target_files.py | 89 class OutputFile(object): class 205 block_list = OutputFile( 217 img = OutputFile(output_zip, OPTIONS.input_tmp, "IMAGES", 223 block_list = OutputFile( 239 block_list = OutputFile( 255 block_list = OutputFile( 271 block_list = OutputFile( 514 img = OutputFile( 528 img = OutputFile( 530 bpt = OutputFile( [all …]
|
/aosp12/build/soong/java/ |
H A D | androidmk.go | 40 OutputFile: android.OptionalPathForPath(output), 74 OutputFile: android.OptionalPathForPath(checkedModulePaths[0]), 88 OutputFile: android.OptionalPathForPath(library.outputFile), 223 OutputFile: android.OptionalPathForPath(prebuilt.dexJarFile), 269 OutputFile: android.OptionalPathForPath(binary.outputFile), 299 OutputFile: android.OptionalPathForPath(outputFile), 324 OutputFile: android.OptionalPathForPath(app.outputFile), 504 OutputFile: android.OptionalPathForPath(jd.stubsSrcJar), 551 OutputFile: outputFile, 650 OutputFile: android.OptionalPathForPath(a.outputFile), [all …]
|
H A D | rro.go | 88 OutputFile() android.Path 167 func (r *RuntimeResourceOverlay) OutputFile() android.Path { func
|
/aosp12/system/tools/aidl/ |
H A D | options_unittest.cpp | 126 EXPECT_EQ(string{kPreprocessCommandOutputFile}, options->OutputFile()); in TEST() 142 EXPECT_EQ(string{kCompileCommandJavaOutput}, options->OutputFile()); in TEST() 155 EXPECT_EQ(string{kCompileCommandJavaOutput}, options->OutputFile()); in TEST() 168 EXPECT_EQ(kCompileCommandCppOutput, options->OutputFile()); in TEST() 179 EXPECT_EQ(kCompileCommandCppOutput, options->OutputFile()); in TEST() 202 EXPECT_EQ(string{""}, options->OutputFile()); in TEST() 221 EXPECT_EQ(string{""}, options->OutputFile()); in TEST() 279 EXPECT_EQ(string{""}, options->OutputFile()); in TEST()
|
H A D | generate_cpp_unittest.cpp | 121 ASSERT_TRUE(GenerateCpp(options_.OutputFile(), options_, typenames_, *interface, io_delegate_)); in TEST_F() 134 ASSERT_FALSE(GenerateCpp(options_.OutputFile(), options_, typenames_, *interface, io_delegate_)); in TEST_F() 148 ASSERT_FALSE(GenerateCpp(options_.OutputFile(), options_, typenames_, *interface, io_delegate_)); in TEST_F()
|
/aosp12/build/soong/rust/ |
H A D | androidmk.go | 53 OutputFile: mod.unstrippedOutputFile, 159 ret.OutputFile = android.OptionalPathForPath(outFile) 188 ret.OutputFile = android.OptionalPathForPath(compiler.path) 190 unstrippedOutputFile = ret.OutputFile 191 ret.OutputFile = compiler.strippedOutputFile
|
H A D | coverage.go | 60 profileInstrFlag, "-g", coverage.OutputFile().Path().String(), "-Wl,--wrap,open") 61 deps.StaticLibs = append(deps.StaticLibs, coverage.OutputFile().Path())
|
H A D | rust.go | 177 if mod.OutputFile().Valid() { 178 return android.Paths{mod.OutputFile().Path()}, nil 607 func (mod *Module) OutputFile() android.OptionalPath { func 628 return mod.OutputFile().Valid() && !mod.Properties.PreventInstall 1014 linkObject := ccDep.OutputFile() 1099 staticLibDepFiles = append(staticLibDepFiles, dep.OutputFile().Path()) 1105 sharedLibFiles = append(sharedLibFiles, dep.OutputFile().Path()) 1109 sharedLibDepFiles = append(sharedLibDepFiles, dep.OutputFile().Path())
|
/aosp12/build/soong/android/ |
H A D | androidmk.go | 66 OutputFile OptionalPath member 112 OutputFile OptionalPath member 337 if _, ok := availableTaggedDists[DefaultDistTag]; !ok && a.OutputFile.Valid() { 338 availableTaggedDists = availableTaggedDists.addPathsForTag(DefaultDistTag, a.OutputFile.Path()) 512 a.SetString("LOCAL_PREBUILT_MODULE_FILE", a.OutputFile.String()) 624 if !a.OutputFile.Valid() { 778 OutputFile: data.OutputFile, 867 if !data.OutputFile.Valid() { 876 extra(w, data.OutputFile.Path())
|
H A D | csuite_config.go | 44 OutputFile: OptionalPathForPath(me.OutputFilePath),
|
H A D | makefile_goal.go | 81 OutputFile: OptionalPathForPath(p.outputFilePath),
|
/aosp12/build/soong/linkerconfig/ |
H A D | linkerconfig.go | 72 func (l *linkerConfig) OutputFile() android.OutputPath { func 155 OutputFile: android.OptionalPathForPath(l.outputFilePath), 161 entries.SetString("LINKER_CONFIG_PATH_"+l.Name(), l.OutputFile().String())
|
/aosp12/build/soong/sh/ |
H A D | sh_binary.go | 181 func (s *ShBinary) OutputFile() android.OutputPath { func 266 OutputFile: android.OptionalPathForPath(s.outputFilePath), 383 relPath = filepath.Join("lib64", cc.OutputFile().Path().Base()) 385 relPath = filepath.Join("lib", cc.OutputFile().Path().Base()) 393 Input: cc.OutputFile().Path(), 415 OutputFile: android.OptionalPathForPath(s.outputFilePath),
|
/aosp12/build/soong/python/ |
H A D | androidmk.go | 41 entries := android.AndroidMkEntries{OutputFile: p.installSource} 81 entries.OutputFile = android.OptionalPathForPath(installer.path)
|
/aosp12/build/soong/etc/ |
H A D | prebuilt_etc.go | 124 OutputFile() android.OutputPath 244 func (p *PrebuiltEtc) OutputFile() android.OutputPath { func 353 OutputFile: android.OptionalPathForPath(p.outputFilePath),
|
/aosp12/build/soong/apex/ |
H A D | apex.go | 1395 fileToCopy := ccMod.OutputFile().Path() 1406 fileToCopy := cc.OutputFile().Path() 1419 fileToCopy := rustm.OutputFile().Path() 1438 fileToCopy := rustm.OutputFile().Path() 1465 fileToCopy := sh.OutputFile() 1473 fileToCopy := prebuilt.OutputFile() 1521 OutputFile() android.Path 1537 fileToCopy := aapp.OutputFile() 1554 fileToCopy := rro.OutputFile() 1748 af := newApexFile(ctx, ap.OutputFile(), ap.BaseModuleName(),
|