Searched refs:Glob (Results 1 – 16 of 16) sorted by relevance
/build/blueprint/pathtools/ |
D | glob.go | 32 func Glob(pattern string) (matches, dirs []string, err error) { func 67 matches, err = filepath.Glob(pattern) 78 matchDirs, err = filepath.Glob(pattern) 112 newMatches, err := filepath.Glob(filepath.Join(m, file)) 278 matches, deps, err = Glob(filepath.Join(prefix, pattern))
|
/build/kati/ |
D | fileutil.h | 43 void Glob(const char* pat, vector<string>** files);
|
D | fileutil.cc | 192 void Glob(const char* pat, vector<string>** files) { in Glob() function
|
D | rule_parser.go | 132 m, _ := fsCache.Glob(string(input))
|
D | pathutil.go | 257 func (c *fsCacheT) Glob(pat string) ([]string, error) { func 273 m, err := c.Glob(dir) 288 files, err := fsCache.Glob(pat)
|
D | eval.cc | 243 Glob(pat.data(), &files); in EvalInclude()
|
D | regen.cc | 263 Glob(gr->pat.c_str(), &files); in CheckGlobResult()
|
D | eval.go | 506 matched, err := filepath.Glob(pat)
|
D | func.cc | 320 Glob(tok.data(), &files); in WildcardFunc()
|
/build/soong/java/ |
D | resources.go | 57 dirs := ctx.Glob("java_resources", resourceDir.String(), nil)
|
D | app.go | 210 newDeps := ctx.Glob("app_resources", filepath.Join(d.String(), "**/*"), aaptIgnoreFilenames) 217 newDeps := ctx.Glob("app_assets", filepath.Join(d.String(), "**/*"), aaptIgnoreFilenames)
|
/build/soong/common/ |
D | glob.go | 75 func Glob(ctx globContext, outDir string, globPattern string, excludes []string) ([]string, error) { func
|
D | paths.go | 248 return ctx.Glob("default", path, []string{}) 386 files, err := Glob(gctx, PathForIntermediates(ctx, intermediates).String(), path.String(), nil) 398 files, dirs, err := pathtools.Glob(path.String()) 443 paths, err := Glob(ctx, PathForModuleOut(ctx, "overlay").String(), dir, []string{})
|
D | module.go | 77 Glob(outDir, globPattern string, excludes []string) Paths methodSpec 600 …globbedSrcFiles = append(globbedSrcFiles, ctx.Glob("src_glob", filepath.Join(prefix, s), excludes)… 609 func (ctx *androidModuleContext) Glob(outDir, globPattern string, excludes []string) Paths { func 610 ret, err := Glob(ctx, PathForModuleOut(ctx, outDir).String(), globPattern, excludes)
|
/build/kati/testcase/ |
D | gen_testcase_parse_benchmark.go | 96 matches, err := filepath.Glob("testcase/*.mk")
|
/build/blueprint/ |
D | context.go | 750 matches, matchedDirs, err := pathtools.Glob(globPattern) 797 matches, matchedDirs, err := pathtools.Glob(globPattern)
|