Searched refs:subdir (Results 1 – 14 of 14) sorted by relevance
/build/kati/testcase/ |
D | foreach.mk | 4 files := $(foreach dir,$(dirs),$(foreach subdir,$(dirs),$(dir)/$(subdir)/$(base)))
|
/build/make/tools/ |
D | generate-notice-files.py | 240 for subdir in included_subdirs: 241 if (root == (input_dir + '/' + subdir) or 242 root.startswith(input_dir + '/' + subdir + '/')): 246 for subdir in excluded_subdirs: 247 if (root == (input_dir + '/' + subdir) or 248 root.startswith(input_dir + '/' + subdir + '/')):
|
/build/soong/android/ |
D | paths.go | 117 genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath argument 120 objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath argument 128 func GenPathWithExt(ctx ModuleContext, subdir string, p Path, ext string) ModuleGenPath { 130 return path.genPathWithExt(ctx, subdir, ext) 138 func ObjPathWithExt(ctx ModuleContext, subdir string, p Path, ext string) ModuleObjPath { 140 return path.objPathWithExt(ctx, subdir, ext) 943 func (p SourcePath) genPathWithExt(ctx ModuleContext, subdir, ext string) ModuleGenPath { 944 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) 947 func (p SourcePath) objPathWithExt(ctx ModuleContext, subdir, ext string) ModuleObjPath { 948 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext)) [all …]
|
/build/make/core/ |
D | definitions.mk | 188 define all-subdir-makefiles 199 define all-named-subdir-makefiles 211 $(call find-subdir-files,$(2) -type d -name "$(1)") 219 define all-subdir-named-dirs 239 define all-subdir-named-files 258 define all-subdir-java-files 277 define all-subdir-c-files 300 define all-subdir-cpp-files 318 define all-subdir-Iaidl-files 336 define all-subdir-vts-files [all …]
|
D | package_internal.mk | 165 $(call find-subdir-assets, $(dir)) \ 201 $(call find-subdir-assets,$(d))))) 205 $(call find-subdir-assets,$(my_res_dir))))) 226 $(call find-subdir-assets,$(dir)) \
|
D | static_java_library.mk | 60 $(call find-subdir-assets,$(dir)) \
|
D | product_config.mk | 76 define find-copy-subdir-files
|
/build/soong/cc/ |
D | compiler.go | 242 func warningsAreAllowed(subdir string) bool { 243 subdir += "/" 245 if strings.HasPrefix(subdir, prefix) { 583 subdir string, srcFiles, pathDeps android.Paths, cFlagsDeps android.Paths) Objects { 585 return TransformSourceToObj(ctx, subdir, srcFiles, flags, pathDeps, cFlagsDeps)
|
D | builder.go | 307 func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles android.Paths, 365 objFile := android.ObjPathWithExt(ctx, subdir, srcFile, "o") 436 gcnoFile := android.ObjPathWithExt(ctx, subdir, srcFile, "gcno") 456 tidyFile := android.ObjPathWithExt(ctx, subdir, srcFile, "tidy") 475 sAbiDumpFile := android.ObjPathWithExt(ctx, subdir, srcFile, "sdump")
|
D | ndk_library.go | 296 subdir := "" 298 return compileObjs(ctx, flagsToBuilderFlags(flags), subdir, srcs, nil, nil), versionScriptPath
|
/build/kati/ |
D | pathutil.go | 870 for _, subdir := range subdirs { 871 if subdir.lmode&os.ModeSymlink == os.ModeSymlink { 872 lpath := filepathJoin(dir, subdir.name) 873 if p, ok := seen[subdir.id]; ok { 878 seen[subdir.id] = lpath 880 fc.walk(w, filepathJoin(dir, subdir.name), subdir.id, depth+1, seen)
|
/build/soong/finder/fs/ |
D | fs.go | 468 subdir, subdirExists := dir.subdirs[baseName] 470 return m.dirToFileInfo(subdir, path), nil 535 for name, subdir := range dir.subdirs { 536 dirInfo := m.dirToFileInfo(subdir, name)
|
/build/soong/java/ |
D | droiddoc.go | 1566 javaVersion, bootclasspathArgs, classpathArgs, sourcepathArgs, opts, subdir, msg string, 1576 "srcJarDir": android.PathForModuleOut(ctx, subdir, "srcjars").String(),
|
/build/blueprint/ |
D | context.go | 1045 for _, subdir := range subdirs { 1046 pattern := filepath.Join(dir, subdir, subBlueprintsName)
|