Searched refs:glob (Results 1 – 17 of 17) sorted by relevance
/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", 66 "pathtools/glob.go", 116 "bootstrap/glob.go",
|
D | glob.go | 49 func (c *Context) glob(pattern string, excludes []string) ([]string, error) { func
|
D | singleton_ctx.go | 347 return s.context.glob(pattern, excludes)
|
D | module_ctx.go | 435 return d.context.glob(pattern, excludes)
|
D | context.go | 1086 matches, err = c.glob(pattern, nil) 1128 matches, err = c.glob(pattern, nil)
|
/build/blueprint/pathtools/ |
D | glob.go | 53 matches, deps, err = glob(fs, pattern, false, follow) 105 func glob(fs FileSystem, pattern string, hasRecursive bool, func 112 matches, err = fs.glob(pattern) 123 matchDirs, err = fs.glob(pattern) 144 dirMatches, dirs, err := glob(fs, dir, hasRecursive, follow) 169 newMatches, err := fs.glob(filepath.Join(MatchEscape(m), file)) 361 func GlobWithDepFile(glob, fileListFile, depFile string, excludes []string) (files []string, err er… argument 362 files, deps, err := Glob(glob, excludes, FollowSymlinks)
|
D | fs.go | 99 glob(pattern string) (matches []string, err error) methodSpec 201 func (fs *osFs) glob(pattern string) ([]string, error) { func 365 func (m *mockFs) glob(pattern string) ([]string, error) { func
|
D | glob_test.go | 900 t.Run("glob:"+test.pattern+","+test.name, func(t *testing.T) {
|
D | fs_test.go | 530 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/cmd/diff_target_files/ |
D | Android.bp | 6 "glob.go",
|
/build/soong/ui/build/ |
D | cleanbuild.go | 30 for _, glob := range globs { 31 files, err := filepath.Glob(glob) 34 panic(fmt.Errorf("%q: %s", glob, err))
|
/build/soong/cc/ |
D | library.go | 417 glob, err := ctx.GlobWithDeps("external/eigen/"+subdir+"/**/*", nil) 422 for _, header := range glob { 441 glob, err := ctx.GlobWithDeps(dir+"/**/*"+ext, nil) 446 for _, header := range glob {
|
/build/soong/docs/ |
D | perf.md | 73 verbose: *kati*: glob time (regen): 0.545859 / 43840 102 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 and output path
|