Home
last modified time | relevance | path

Searched refs:glob (Results 1 – 25 of 26) sorted by relevance

12

/build/blueprint/bootstrap/bpglob/
Dbpglob.go124 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/
Dglob_test.go28 matches, err := ctx.glob("a/*", nil)
39 matches, err = ctx.glob("a/*", []string{})
48 matches, err = ctx.glob("a/*", []string{"a/b"})
DBlueprints11 "glob.go",
69 "pathtools/glob.go",
120 "bootstrap/glob.go",
Dglob.go40 func (c *Context) glob(pattern string, excludes []string) ([]string, error) { func
Dsingleton_ctx.go366 return s.context.glob(pattern, excludes)
Dmodule_ctx.go467 return d.context.glob(pattern, excludes)
/build/make/tools/
Dcheckowners.py57 glob = '[a-zA-Z0-9_\\.\\-\\*\\?]+'
58 globs = '(%s( *, *%s)*)' % (glob, glob)
/build/blueprint/pathtools/
Dglob.go103 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))
Dfs.go99 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
Dglob_test.go900 t.Run("glob:"+test.pattern+","+test.name, func(t *testing.T) {
Dfs_test.go530 got, err := fs.glob(test.pattern)
/build/pesto/experiments/prepare_bazel_test_env/data/templates/platform_testing/tests/example/native/
DBUILD.bazel.template24 _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/
Dfind_shareduid_violation.py48 from glob import glob
109 for f in glob(os.path.join(product_out, location, "*", "*", "*.apk")):
/build/soong/cmd/diff_target_files/
DAndroid.bp10 "glob.go",
/build/bazel/rules/
Dstatic_libc.bzl32 # It must be a glob.
39 srcs = include_srcs + native.glob(include_globs),
/build/make/tools/rbcrun/
DREADME.md71 #### 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/
DBUILD17 resource_files = glob(["res/**"]),
/build/soong/ui/build/
Dcleanbuild.go32 for _, glob := range globs {
34 files, err := filepath.Glob(glob)
37 panic(fmt.Errorf("%q: %s", glob, err))
/build/blueprint/bootstrap/
Dglob.go96 for i, glob := range globs {
103 for _, exclude := range glob.Excludes {
/build/soong/java/
Dprebuilt_apis.go147 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/
DBUILD.bazel.template23 _TF_JARS = glob(["{prebuilts_dir_name}/host/tradefed/*.jar"])
/build/pesto/experiments/prepare_bazel_test_env/
Dbazelenv.py472 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/
Dbuild_conversion.go243 content: `filegroup(name = "bp2build_all_srcs", srcs = glob(["**/*"]))`,
/build/soong/cc/
Dlibrary.go616 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/
Dperf.md73 verbose: *kati*: glob time (regen): 0.545859 / 43840
102 into glob or stat checks (falling back to calling `find` if one of those imply

12