Home
last modified time | relevance | path

Searched refs:globPattern (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java311 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 Dpgo.go114 globPattern := filepath.Join(profileProject, profileFile+".*")
115 versionedProfiles, err := ctx.GlobWithDeps(globPattern, nil)
/aosp12/build/soong/android/
H A Dpaths.go41 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 Dmodule.go125 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)