Searched refs:glob (Results 1 – 25 of 52) sorted by relevance
123
/build/blueprint/bootstrap/bpglob/ |
D | bpglob.go | 72 glob := &(*e)[len(*e)-1] 73 glob.excludes = append(glob.excludes, s) 126 for _, glob := range globs { 127 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"})
|
/build/blueprint/bootstrap/ |
D | glob.go | 98 for i, glob := range globs { 105 for _, exclude := range glob.Excludes { 213 func WriteBuildGlobsNinjaFile(glob *GlobSingleton, config interface{}) error { 214 buffer, errs := generateGlobNinjaFile(glob, config) 220 err := ioutil.WriteFile(blueprint.JoinPath(glob.SrcDir, glob.GlobFile), buffer, outFilePermissions) 222 return fmt.Errorf("error writing %s: %s", glob.GlobFile, err) 228 func generateGlobNinjaFile(glob *GlobSingleton, config interface{}) ([]byte, []error) { 232 return glob
|
/build/bazel/rules/tradefed/test/ |
D | BUILD.bazel | 4 glob(["*.xml"]),
|
/build/make/target/product/security/ |
D | BUILD.bazel | 3 srcs = glob([
|
/build/bazel/examples/cc/proto/external/ |
D | BUILD | 5 srcs = glob(["src/**/*.proto"]),
|
/build/bazel/examples/cc/proto/deps/ |
D | BUILD | 5 srcs = glob(["src/**/*.proto"]),
|
/build/pesto/experiments/prepare_bazel_test_env/ |
D | BUILD.bazel | 17 srcs = glob(["*.py"]), 18 data = glob(["data/**/*"])
|
/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/blueprint/pathtools/ |
D | glob.go | 97 matches, deps, err := glob(fs, pattern, false, follow) 151 func glob(fs FileSystem, pattern string, hasRecursive bool, func 158 matches, err = fs.glob(pattern) 169 matchDirs, err = fs.glob(pattern) 190 dirMatches, dirs, err := glob(fs, dir, hasRecursive, follow) 215 newMatches, err := fs.glob(filepath.Join(MatchEscape(m), file))
|
/build/bazel/rules/apex/testdata/ |
D | BUILD | 8 srcs = glob([
|
/build/soong/cmd/diff_target_files/ |
D | Android.bp | 10 "glob.go",
|
/build/make/tools/ |
D | list_files.py | 18 from glob import glob 56 for file in sorted(glob(self.folder_dir, recursive=True)):
|
/build/bazel/rules/abi/abi-dumps/platform/ |
D | BUILD.bazel | 9 srcs = glob(["**/*"]),
|
/build/make/tools/releasetools/merge/ |
D | merge_dexopt.py | 22 import glob 162 for config in glob.glob(
|
/build/bazel/scripts/incremental_build/ |
D | finder.py | 16 import glob 43 paths = glob.iglob(g, root_dir=root_dir, recursive=True)
|
/build/bazel/rules/tradefed/ |
D | BUILD.bazel | 4 exports_files(glob(["*.tpl"]))
|
/build/make/tools/rbcrun/ |
D | README.md | 73 Returns all the paths under *top* whose basename matches *pattern* (which is a shell's glob pattern… 76 #### rblf_wildcard(*glob*, *top* = None) 78 Expands *glob*. If *top* is supplied, expands "*top*/*glob*", then removes
|
/build/pesto/experiments/prepare_bazel_test_env/data/templates/platform_testing/tests/example/jarhosttest/ |
D | BUILD.bazel.template | 24 _LIB_SRCS = glob([ 28 _TESTCASE_HOST_SRCS = glob(["{prebuilts_dir_name}/host_testcases/HelloWorldHostTest/**/*"])
|
/build/pesto/experiments/prepare_bazel_test_env/data/templates/platform_testing/tests/example/instrumentation/ |
D | BUILD.bazel.template | 24 _LIB_SRCS = glob([ 28 _TESTCASE_DEVICE_SRCS = glob(["{prebuilts_dir_name}/target_testcases/HelloWorldTests/**/*"])
|
/build/bazel_common_rules/dist/ |
D | dist.py | 37 import glob 82 dist_manifests = glob.glob(
|
/build/bazel/rules/cc/ |
D | static_libc.bzl | 49 # It must be a glob. 56 srcs = include_srcs + native.glob(include_globs),
|
/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/make/core/ |
D | BUILD.bazel | 17 glob(["*.xml"]),
|
123