Home
last modified time | relevance | path

Searched refs:dirs (Results 1 – 21 of 21) sorted by relevance

/build/blueprint/pathtools/
Dglob_test.go30 dirs []string
37 dirs: []string{"."},
42 dirs: []string{"."},
47 dirs: []string{".", "a", "b", "c"},
52 dirs: []string{".", "a", "b", "c", "a/a", "a/b", "c/f", "c/g", "c/h"},
57 dirs: []string{".", "a", "b", "c", "a/a"},
64 dirs: []string{"."},
69 dirs: []string{"."},
74 dirs: []string{".", "a", "b", "c"},
79 dirs: []string{".", "a", "c"},
[all …]
Dglob.go32 func Glob(pattern string) (matches, dirs []string, err error) {
41 func GlobWithExcludes(pattern string, excludes []string) (matches, dirs []string, err error) {
45 matches, dirs, err = glob(pattern, false)
57 return matches, dirs, nil
62 func glob(pattern string, hasRecursive bool) (matches, dirs []string, err error) {
69 return matches, dirs, err
80 return matches, dirs, err
83 dirs = append(dirs, matchDirs...)
85 return matches, dirs, err
92 return matches, dirs, GlobMultipleRecursiveErr
[all …]
/build/kati/testcase/tools/
Dfindleaves.py31 for root, dirs, files in os.walk(rootdir, followlinks=True):
34 for d in dirs:
40 while i < len(dirs):
41 if dirs[i] in prune:
42 del dirs[i]
53 del dirs[:]
/build/tools/
Dfindleaves.py31 for root, dirs, files in os.walk(rootdir, followlinks=True):
34 for d in dirs:
40 while i < len(dirs):
41 if dirs[i] in prune:
42 del dirs[i]
53 del dirs[:]
Dfileslist.py29 for dir, dirs, files in os.walk(root):
Djava-layers.py179 for root, dirs, files in os.walk(d):
/build/kati/
Dfileutil.go32 dirs []string member
37 dirs []string // VPATH variable member
48 for _, dir := range vpath.dirs {
55 for _, dir := range s.dirs {
Deval.go656 var dirs []string
659 dirs = append(dirs, string(dir))
667 dirs: dirs,
713 vpaths.dirs = append(vpaths.dirs, string(dir))
Dninja.cc721 unordered_set<string> dirs; in GenerateStamp()
722 GetReadDirs(p.first, files, &dirs); in GenerateStamp()
723 DumpInt(fp, dirs.size()); in GenerateStamp()
724 for (const string& dir : dirs) { in GenerateStamp()
Dpathutil_test.go713 dirs: []string{"."},
722 dirs: []string{"art", "bionic"},
769 dirs: []string{"."},
778 dirs: []string{"art", "bionic", "frameworks/base"},
787 dirs: []string{"art", "bionic", "frameworks/base"},
Dpathutil.go66 func (c *fsCacheT) dirs() int { func
815 dirs []string member
839 for _, dir := range fc.dirs {
943 p.fc.dirs, p.fc.name = args[:len(args)-1], args[len(args)-1]
Ddep.go582 logStats("%d dirs %d files", fsCache.dirs(), fsCache.files())
/build/soong/cc/
Dutil.go27 func includeDirsToFlags(dirs common.Paths) string {
28 return common.JoinWithPrefix(dirs.Strings(), "-I")
35 func ldDirsToFlags(dirs []string) string {
36 return common.JoinWithPrefix(dirs, "-L")
/build/tools/atree/
Dfs.cpp55 vector<string> dirs; in remove_recursively() local
68 dirs.push_back(full); in remove_recursively()
82 for (vector<string>::iterator it=dirs.begin(); it!=dirs.end(); it++) { in remove_recursively()
Dfiles.cpp438 vector<string> dirs; in list_dir() local
453 dirs.push_back(entry); in list_dir()
458 for (vector<string>::iterator it=dirs.begin(); it!=dirs.end(); it++) { in list_dir()
/build/soong/java/
Dresources.go57 dirs := ctx.Glob("java_resources", resourceDir.String(), nil)
58 for _, dir := range dirs {
/build/soong/glob/
Dglob.go40 files, dirs, err := pathtools.GlobWithExcludes(glob, excludes)
48 deptools.WriteDepFile(depFile, fileListFile, dirs)
/build/soong/common/
Dmodule.go663 dirs := sortedKeys(dirModules)
664 for _, dir := range dirs {
Dpaths.go398 files, dirs, err := pathtools.Glob(path.String())
404 ctx.AddNinjaFileDeps(dirs...)
/build/tools/releasetools/
Dota_from_target_files760 dirs = filename.split("/")[:-1]
761 while len(dirs) > 0:
762 path = "/".join(dirs)
766 dirs.pop()
Dota_from_target_files.py760 dirs = filename.split("/")[:-1]
761 while len(dirs) > 0:
762 path = "/".join(dirs)
766 dirs.pop()