/build/blueprint/ |
D | glob_test.go | 28 matches, err := ctx.glob("a/*", nil) 39 matches, err = ctx.glob("a/*", []string{}) 48 matches, err = ctx.glob("a/*", []string{"a/b"})
|
D | Blueprints | 11 "glob.go", 67 "pathtools/glob.go", 110 "bootstrap/glob.go",
|
D | glob.go | 49 func (c *Context) glob(pattern string, excludes []string) ([]string, error) { func
|
D | singleton_ctx.go | 272 return s.context.glob(pattern, excludes)
|
D | module_ctx.go | 277 return d.context.glob(pattern, excludes)
|
D | context.go | 1008 matches, err = c.glob(pattern, nil) 1050 matches, err = c.glob(pattern, nil)
|
/build/blueprint/pathtools/ |
D | glob.go | 52 matches, deps, err = glob(fs, pattern, false, follow) 104 func glob(fs FileSystem, pattern string, hasRecursive bool, func 111 matches, err = fs.glob(pattern) 122 matchDirs, err = fs.glob(pattern) 141 dirMatches, dirs, err := glob(fs, dir, hasRecursive, follow) 166 newMatches, err := fs.glob(filepath.Join(MatchEscape(m), file)) 389 func GlobWithDepFile(glob, fileListFile, depFile string, excludes []string) (files []string, err er… argument 390 files, deps, err := Glob(glob, excludes, FollowSymlinks)
|
D | fs.go | 96 glob(pattern string) (matches []string, err error) methodSpec 157 func (osFs) glob(pattern string) ([]string, error) { func 319 func (m *mockFs) glob(pattern string) ([]string, error) { func
|
D | fs_test.go | 551 got, err := fs.glob(test.pattern)
|
/build/make/core/tasks/ |
D | find-shareduid-violation.py | 19 from glob import glob 61 for f in glob(os.path.join(product_out, p, "*", "*", "*.apk")):
|
/build/make/tools/ |
D | checkowners.py | 57 glob = '[a-zA-Z0-9_\\.\\-\\*\\?]+' 58 globs = '(%s( *, *%s)*)' % (glob, glob)
|
/build/soong/ui/build/ |
D | cleanbuild.go | 28 for _, glob := range globs { 29 files, err := filepath.Glob(glob) 32 panic(fmt.Errorf("%q: %s", glob, err))
|
/build/kati/ |
D | runtest.rb | 51 files = Dir.glob('*') 64 (get_output_filenames + Dir.glob('.*')).each do |fname| 89 test_files = Dir.glob('testcase/*.mk').sort 90 test_files += Dir.glob('testcase/*.sh').sort 99 Dir.glob("#{dir}/*").each do |fname|
|
D | fileutil.cc | 169 glob(pat, 0, NULL, &gl); in Get()
|
D | pathutil.go | 237 func (c *fsCacheT) glob(dir, pattern string, matches []string) ([]string, error) { func 270 return c.glob(dir, file, nil) 279 matches, err = c.glob(d, file, matches)
|
/build/soong/cmd/diff_target_files/ |
D | Android.bp | 6 "glob.go",
|
/build/soong/docs/ |
D | perf.md | 38 .../kati.go:127: *kati*: glob time (regen): 0.377193 / 33609 67 into glob or stat checks (falling back to calling `find` if one of those imply
|
/build/soong/ |
D | README.md | 41 Properties that take a list of files can also take glob patterns. Glob
|