Searched refs:globPattern (Results 1 – 4 of 4) sorted by relevance
/aosp12/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/ |
H A D | AsmAnalyzer.java | 311 static Pattern getPatternFromGlob(String globPattern) { in getPatternFromGlob() argument 317 globPattern = globPattern.replaceAll("\\$", "\\\\\\$"); in getPatternFromGlob() 318 globPattern = globPattern.replaceAll("\\.", "\\\\."); in getPatternFromGlob() 321 globPattern = globPattern.replaceAll("\\*\\*", "@"); in getPatternFromGlob() 322 globPattern = globPattern.replaceAll("\\*", "[^.]*"); in getPatternFromGlob() 323 globPattern = globPattern.replaceAll("@", ".*"); in getPatternFromGlob() 324 globPattern += "$"; in getPatternFromGlob() 326 return Pattern.compile(globPattern); in getPatternFromGlob()
|
/aosp12/build/soong/cc/ |
H A D | pgo.go | 114 globPattern := filepath.Join(profileProject, profileFile+".*") 115 versionedProfiles, err := ctx.GlobWithDeps(globPattern, nil)
|
/aosp12/build/soong/android/ |
H A D | paths.go | 41 GlobWithDeps(globPattern string, excludes []string) ([]string, error) 69 func Glob(ctx EarlyModulePathContext, globPattern string, excludes []string) Paths { 70 ret, err := ctx.GlobWithDeps(globPattern, excludes) 79 func GlobFiles(ctx EarlyModulePathContext, globPattern string, excludes []string) Paths { 80 ret, err := ctx.GlobWithDeps(globPattern, excludes)
|
H A D | module.go | 125 Glob(globPattern string, excludes []string) Paths 126 GlobFiles(globPattern string, excludes []string) Paths 1938 func (e *earlyModuleContext) Glob(globPattern string, excludes []string) Paths { 1939 return Glob(e, globPattern, excludes) 1942 func (e *earlyModuleContext) GlobFiles(globPattern string, excludes []string) Paths { 1943 return GlobFiles(e, globPattern, excludes)
|