Searched refs:baseName (Results 1 – 14 of 14) sorted by relevance
/build/soong/snapshot/ |
D | util.go | 47 func zipSnapshot(ctx android.SingletonContext, dir string, baseName string, snapshotOutputs android… 49 ctx, dir, baseName+".zip") 53 ctx, dir, baseName+"_list.rsp") 61 zipRule.Build(zipPath.String(), baseName+" snapshot "+zipPath.String())
|
/build/soong/mk2rbc/ |
D | mk2rbc.go | 49 baseName = "rblf" const 54 cfnGetCfg = baseName + ".cfg" 55 cfnMain = baseName + ".product_configuration" 56 cfnBoardMain = baseName + ".board_configuration" 57 cfnPrintVars = baseName + ".printvars" 58 cfnInherit = baseName + ".inherit" 59 cfnSetListDefault = baseName + ".setdefault" 70 …"abspath": &simpleCallParser{name: baseName + ".abspath", returnType:… 71 …"add-product-dex-preopt-module-config": &simpleCallParser{name: baseName + ".add_product_dex_preop… 72 …"add_soong_config_namespace": &simpleCallParser{name: baseName + ".soong_config_namespac… [all …]
|
D | node.go | 104 …gctx.writef("%s.mkwarning(%q, %q)", baseName, i.location, "Please avoid starting an include path w…
|
/build/soong/cc/ |
D | gen.go | 117 baseName := strings.TrimSuffix(aidlFile.Base(), aidlFile.Ext()) 118 shortName := baseName 122 if len(baseName) >= 2 && baseName[0] == 'I' && 123 strings.ToUpper(baseName)[1] == baseName[1] { 124 shortName = strings.TrimPrefix(baseName, "I") 128 cppFile = outDir.Join(ctx, aidlPackage, baseName+".cpp") 129 depFile := outDir.Join(ctx, aidlPackage, baseName+".cpp.d") 130 headerI := outDir.Join(ctx, aidlPackage, baseName+".h")
|
D | builder.go | 919 baseName string, exportedIncludeDirs []string, symbolFile android.OptionalPath, 923 outputFile := android.PathForModuleOut(ctx, baseName+".lsdump") 973 baseName, nameExt string, extraFlags []string, errorMessage string) android.Path { argument 977 outputFile = android.PathForModuleOut(ctx, baseName+"."+nameExt+".abidiff") 979 outputFile = android.PathForModuleOut(ctx, baseName+".abidiff") 981 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName)) 1141 inputs Objects, baseName string) android.OptionalPath { 1144 outputFile := android.PathForModuleOut(ctx, baseName+".zip")
|
D | makevars.go | 114 baseName := ccModule.BaseModuleName() 116 if !inList(baseName, exportedVendorPublicLibraries) { 117 exportedVendorPublicLibraries = append(exportedVendorPublicLibraries, baseName)
|
D | library.go | 1332 baseName, nameExt string, isLlndk, allowExtensions bool, 1355 baseName, nameExt, extraFlags, errorMessage)) 1360 baseName, nameExt string, isLlndk bool, sourceVersion, prevDumpDir string) { 1364 library.sourceAbiDiff(ctx, sourceDump, referenceDump, baseName, nameExt, 1370 baseName, nameExt string, isLlndk bool, lsdumpTagName string) { 1372 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName)) 1380 library.sourceAbiDiff(ctx, sourceDump, referenceDump, baseName, nameExt, 1386 baseName, nameExt string, refDumpDir string, lsdumpTagName string) { 1388 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName)) 1401 library.sourceAbiDiff(ctx, sourceDump, referenceDump, baseName, nameExt,
|
D | library_stub.go | 486 func BuildApiVariantName(baseName string, variant string, version string) string { 487 names := []string{baseName, variant}
|
D | cc.go | 3508 baseName := ccDepModule.BaseModuleName() 3510 return baseName + snapshotPrebuilt.SnapshotAndroidMkSuffix()
|
/build/soong/java/ |
D | sdk_library.go | 256 func (scope *apiScope) apiLibraryModuleName(baseName string) string { 257 return scope.stubsLibraryModuleName(baseName) + ".from-text" 260 func (scope *apiScope) sourceStubLibraryModuleName(baseName string) string { 261 return scope.stubsLibraryModuleName(baseName) + ".from-source" 264 func (scope *apiScope) exportableSourceStubsLibraryModuleName(baseName string) string { 265 return scope.exportableStubsLibraryModuleName(baseName) + ".from-source" 268 func (scope *apiScope) stubsLibraryModuleName(baseName string) string { 269 return baseName + scope.stubsLibraryModuleNameSuffix() 272 func (scope *apiScope) exportableStubsLibraryModuleName(baseName string) string { 273 return baseName + scope.exportableStubsLibraryModuleNameSuffix() [all …]
|
/build/soong/ui/logger/ |
D | logger.go | 81 func fileRotation(from, baseName, ext string, cur, max int) error { argument 82 newName := baseName + "." + strconv.Itoa(cur) + ext 86 fileRotation(newName, baseName, ext, cur+1, max)
|
/build/soong/finder/fs/ |
D | fs.go | 468 parentPath, baseName := pathSplit(path) 473 subdir, subdirExists := dir.subdirs[baseName] 477 file, fileExists := dir.files[baseName] 481 link, linkExists := dir.symlinks[baseName] 707 baseName := filepath.Base(filePath) 708 _, exists := parentDir.files[baseName] 711 parentDir.files[baseName] = m.newFile() 713 readErr := parentDir.files[baseName].readErr 722 file := parentDir.files[baseName]
|
/build/soong/cmd/merge_zips/ |
D | merge_zips.go | 365 baseName := filepath.Base(file.Name) 366 if baseName == "__init__.py" || baseName == "__init__.pyc" {
|
/build/soong/rust/ |
D | rust.go | 1114 baseName := rustDep.BaseModuleName() 1115 return baseName + snapshotPrebuilt.SnapshotAndroidMkSuffix() + rustDep.AndroidMkSuffix()
|