/build/blueprint/bootstrap/bpglob/ |
D | bpglob.go | 124 glob := &(*e)[len(*e)-1] 125 glob.excludes = append(glob.excludes, s) 202 for _, glob := range globs { 203 result, err := pathtools.Glob(glob.pattern, glob.excludes, pathtools.FollowSymlinks)
|
/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", 69 "pathtools/glob.go", 120 "bootstrap/glob.go",
|
D | glob.go | 40 func (c *Context) glob(pattern string, excludes []string) ([]string, error) { func
|
D | singleton_ctx.go | 366 return s.context.glob(pattern, excludes)
|
D | module_ctx.go | 467 return d.context.glob(pattern, excludes)
|
/build/make/tools/ |
D | checkowners.py | 57 glob = '[a-zA-Z0-9_\\.\\-\\*\\?]+' 58 globs = '(%s( *, *%s)*)' % (glob, glob)
|
/build/blueprint/pathtools/ |
D | glob.go | 103 matches, deps, err := glob(fs, pattern, false, follow) 153 func glob(fs FileSystem, pattern string, hasRecursive bool, func 160 matches, err = fs.glob(pattern) 171 matchDirs, err = fs.glob(pattern) 192 dirMatches, dirs, err := glob(fs, dir, hasRecursive, follow) 217 newMatches, err := fs.glob(filepath.Join(MatchEscape(m), file))
|
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/pesto/experiments/prepare_bazel_test_env/data/templates/platform_testing/tests/example/native/ |
D | BUILD.bazel.template | 24 _LIB_SRCS = glob([ 28 _TESTCASE_HOST_SRCS = glob( 30 _TESTCASE_DEVICE_SRCS = glob(["{prebuilts_dir_name}/target_testcases/hello_world_test/**/*"])
|
/build/make/tools/releasetools/ |
D | find_shareduid_violation.py | 48 from glob import glob 109 for f in glob(os.path.join(product_out, location, "*", "*", "*.apk")):
|
/build/soong/cmd/diff_target_files/ |
D | Android.bp | 10 "glob.go",
|
/build/bazel/rules/ |
D | static_libc.bzl | 32 # It must be a glob. 39 srcs = include_srcs + native.glob(include_globs),
|
/build/make/tools/rbcrun/ |
D | README.md | 71 #### rblf_wildcard(*glob*, *top* = None) 73 Expands *glob*. If *top* is supplied, expands "*top*/*glob*", then removes
|
/build/bazel/examples/android_app/java/com/app/ |
D | BUILD | 17 resource_files = glob(["res/**"]),
|
/build/soong/ui/build/ |
D | cleanbuild.go | 32 for _, glob := range globs { 34 files, err := filepath.Glob(glob) 37 panic(fmt.Errorf("%q: %s", glob, err))
|
/build/blueprint/bootstrap/ |
D | glob.go | 96 for i, glob := range globs { 103 for _, exclude := range glob.Excludes {
|
/build/soong/java/ |
D | prebuilt_apis.go | 147 glob := fmt.Sprintf("%s/%s/%s", dir, scope, name) 148 vfiles, err := mctx.GlobWithDeps(glob, nil)
|
/build/pesto/experiments/prepare_bazel_test_env/data/templates/tools/tradefederation/core/ |
D | BUILD.bazel.template | 23 _TF_JARS = glob(["{prebuilts_dir_name}/host/tradefed/*.jar"])
|
/build/pesto/experiments/prepare_bazel_test_env/ |
D | bazelenv.py | 472 return [p for p in self.static_path.glob("**/*") if p.is_file()] 475 return [p for p in self.template_path.glob("**/*") if p.is_file()]
|
/build/soong/bp2build/ |
D | build_conversion.go | 243 content: `filegroup(name = "bp2build_all_srcs", srcs = glob(["**/*"]))`,
|
/build/soong/cc/ |
D | library.go | 616 glob, err := ctx.GlobWithDeps("external/eigen/"+subdir+"/**/*", nil) 621 for _, header := range glob { 634 glob, err := ctx.GlobWithDeps(dir+"/**/*", nil) 640 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
|