Searched refs:Base (Results 1 – 25 of 64) sorted by relevance
123
/build/soong/cmd/diff_target_files/ |
D | glob.go | 26 if filepath.Base(pattern) == "**" { 44 pattern, patternFile = filepath.Dir(pattern), filepath.Base(pattern) 66 name, nameFile = filepath.Dir(name), filepath.Base(name)
|
/build/soong/android/ |
D | prebuilt_etc_test.go | 112 if p.outputFilePath.Base() != "foo.installed.conf" { 113 t.Errorf("expected foo.installed.conf, got %q", p.outputFilePath.Base()) 131 if p.outputFilePath.Base() != "my_foo" { 132 t.Errorf("expected my_foo, got %q", p.outputFilePath.Base()) 136 if p.outputFilePath.Base() != "bar.conf" { 137 t.Errorf("expected bar.conf, got %q", p.outputFilePath.Base())
|
D | override_module.go | 56 Base *string member 174 ctx.AddDependency(ctx.Module(), overrideBaseDepTag, *module.getOverrideModuleProperties().Base)
|
D | vts_config_test.go | 57 "plain", variants[0]).Module().(*VtsConfig).OutputFilePath.Base()
|
D | api_levels.go | 42 Description: "generate " + file.Base(),
|
D | writedocs.go | 59 Description: fmt.Sprintf("%s docs $out", primaryBuilder.Base()),
|
D | prebuilt_etc.go | 118 filename = p.sourceFilePath.Base() 158 fmt.Fprintln(w, "LOCAL_INSTALLED_MODULE_STEM :=", p.outputFilePath.Base())
|
/build/soong/apex/ |
D | key.go | 91 …pubKeyName := m.public_key_file.Base()[0 : len(m.public_key_file.Base())-len(m.public_key_file.Ext… 92 …privKeyName := m.private_key_file.Base()[0 : len(m.private_key_file.Base())-len(m.private_key_file…
|
/build/soong/cc/ |
D | builder.go | 521 Description: "static link " + outputFile.Base(), 564 Description: "static link " + outputFile.Base(), 587 out = android.PathForModuleOut(ctx, outputFile.Base()+strconv.Itoa(i)) 592 Description: "static link " + out.Base(), 661 Description: "link " + outputFile.Base(), 701 Description: "header-abi-linker " + outputFile.Base(), 718 Description: "gunzip" + outputFile.Base(), 746 Description: "header-abi-diff " + outputFile.Base(), 780 Description: "generate toc " + inputFile.Base(), 798 Description: "link " + outputFile.Base(), [all …]
|
D | ndk_headers.go | 147 installedPath := ctx.InstallFile(installDir, header.Base(), header) 148 installPath := installDir.Join(ctx, header.Base()) 223 installPath := installDir.Join(ctx, header.Base()) 344 installPath := installDir.Join(ctx, src.Base())
|
D | binary.go | 428 target := "/" + filepath.Join("apex", "com.android.runtime", dir.Base(), file.Base()) 430 ctx.InstallAbsoluteSymlink(dir, file.Base(), target) 431 …binary.post_install_cmds = append(binary.post_install_cmds, makeSymlinkCmd(dirOnDevice, file.Base(…
|
D | installer.go | 80 installer.path = ctx.InstallFile(installer.installDir(ctx), file.Base(), file)
|
D | androidmk.go | 181 _, _, ext := splitFileExt(outputFile.Base()) 293 _, suffix, _ := splitFileExt(outputFile.Base()) 335 _, _, ext := splitFileExt(outputFile.Base()) 372 _, _, ext := splitFileExt(outputFile.Base())
|
/build/soong/bpf/ |
D | bpf.go | 106 objName := name + "_" + obj.Base() 111 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", obj.Base())
|
/build/blueprint/loadplugins/ |
D | loadplugins.go | 46 filepath.Base(*pkg),
|
/build/soong/ui/build/paths/ |
D | logs.go | 52 return fmt.Sprintf("/proc/self/fd/%d/%s", d.Fd(), filepath.Base(name)), func() { 79 addr = filepath.Join(d, "d", filepath.Base(name))
|
/build/soong/python/ |
D | installer.go | 62 installer.path = ctx.InstallFile(installer.installDir(ctx), file.Base(), file)
|
D | proto.go | 22 srcsZipFile := android.PathForModuleGen(ctx, protoFile.Base()+".srcszip")
|
/build/kati/testcase/ |
D | gen_testcase_parse_benchmark.go | 57 base := filepath.Base(fname)
|
/build/soong/cmd/path_interposer/ |
D | main.go | 90 base := filepath.Base(args[0]) 93 if base == filepath.Base(interposer) {
|
/build/soong/java/ |
D | dexpreopt_bootjars.go | 312 rule.Install(art, filepath.Join(installDir, art.Base())) 313 rule.Install(oat, filepath.Join(installDir, oat.Base())) 319 android.RuleBuilderInstall{vdex, filepath.Join(vdexInstallDir, vdex.Base())}) 323 android.RuleBuilderInstall{unstrippedOat, filepath.Join(installDir, unstrippedOat.Base())})
|
D | aapt2.go | 36 name := res.Base() 132 "resZipDir": android.PathForModuleOut(ctx, "aapt2", "reszip", flata.Base()).String(),
|
D | jacoco.go | 57 tmpJar := android.PathForModuleOut(ctx, "jacoco", "tmp", strippedJar.Base())
|
/build/soong/dexpreopt/ |
D | dexpreopt.go | 196 base := filepath.Base(module.DexLocation) 208 pathtools.ReplaceExtension(filepath.Base(path), "odex")) 558 pathArch := filepath.Base(filepath.Dir(path.String())) 562 return filepath.Join(filepath.Dir(filepath.Dir(path.String())), filepath.Base(path.String()))
|
/build/soong/cmd/zipsync/ |
D | zipsync.go | 89 if match, err := filepath.Match(*filter, filepath.Base(f.Name)); err != nil {
|
123