Home
last modified time | relevance | path

Searched refs:globs (Results 1 – 5 of 5) sorted by relevance

/build/blueprint/
Dglob.go54 g, exists := c.globs[fileName]
71 if g, exists = c.globs[fileName]; !exists {
72 c.globs[fileName] = GlobPath{pattern, excludes, files, deps, fileName}
86 fileNames := make([]string, 0, len(c.globs))
87 for k := range c.globs {
92 globs := make([]GlobPath, len(fileNames))
94 globs[i] = c.globs[fileName]
97 return globs
Dcontext.go114 globs map[string]GlobPath member
314 globs: make(map[string]GlobPath),
/build/make/tools/
Dcheckowners.py58 globs = '(%s( *, *%s)*)' % (glob, glob)
59 perfile = 'per-file +' + globs + ' *= *' + directive
/build/blueprint/bootstrap/
Dbuild.ninja10 myGlobs = ${bootstrapBuildDir}/.minibootstrap/build-globs.ninja
/build/soong/ui/build/
Dcleanbuild.go29 func removeGlobs(ctx Context, globs ...string) {
30 for _, glob := range globs {