Home
last modified time | relevance | path

Searched refs:baseName (Results 1 – 7 of 7) sorted by relevance

/build/soong/cc/
Dgen.go116 baseName := strings.TrimSuffix(aidlFile.Base(), aidlFile.Ext())
117 shortName := baseName
121 if len(baseName) >= 2 && baseName[0] == 'I' &&
122 strings.ToUpper(baseName)[1] == baseName[1] {
123 shortName = strings.TrimPrefix(baseName, "I")
127 cppFile = outDir.Join(ctx, aidlPackage, baseName+".cpp")
128 depFile := outDir.Join(ctx, aidlPackage, baseName+".cpp.d")
129 headerI := outDir.Join(ctx, aidlPackage, baseName+".h")
Dbuilder.go815 baseName, exportedHeaderFlags string, symbolFile android.OptionalPath, argument
818 outputFile := android.PathForModuleOut(ctx, baseName+".lsdump")
862 func unzipRefDump(ctx android.ModuleContext, zippedRefDump android.Path, baseName string) android.P…
863 outputFile := android.PathForModuleOut(ctx, baseName+"_ref.lsdump")
875baseName, exportedHeaderFlags string, checkAllApis, isLlndk, isNdk, isVndkExt bool) android.Option… argument
877 outputFile := android.PathForModuleOut(ctx, baseName+".abidiff")
878 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
1039 inputs Objects, baseName string) android.OptionalPath {
1042 outputFile := android.PathForModuleOut(ctx, baseName+".zip")
Dmakevars.go106 baseName := ccModule.BaseModuleName()
108 if !inList(baseName, exportedVendorPublicLibraries) {
109 exportedVendorPublicLibraries = append(exportedVendorPublicLibraries, baseName)
/build/soong/bp2build/
Dtesting.go173 baseName := m.Name()
180 ctx.CreateBazelTargetModule(customBazelModuleFactory, baseName, myLibraryProps, attrs)
186 …ctx.CreateBazelTargetModule(customBazelModuleFactory, baseName+"_proto_library_deps", protoLibrary…
192 …ctx.CreateBazelTargetModule(customBazelModuleFactory, baseName+"_my_proto_library_deps", myProtoLi…
/build/soong/ui/logger/
Dlogger.go80 func fileRotation(from, baseName, ext string, cur, max int) error { argument
81 newName := baseName + "." + strconv.Itoa(cur) + ext
85 fileRotation(newName, baseName, ext, cur+1, max)
/build/soong/finder/fs/
Dfs.go468 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/java/
Dbootclasspath_fragment.go964 func createBootImageTag(arch android.ArchType, baseName string) string {
965 tag := fmt.Sprintf(".bootimage-%s-%s", arch, baseName)