Searched refs:SetFunc (Results 1 – 2 of 2) sorted by relevance
/aosp12/build/soong/androidmk/androidmk/ |
H A D | android.go | 974 globalScope.SetFunc("my-dir", mydir) 975 globalScope.SetFunc("all-java-files-under", allFilesUnder("*.java")) 976 globalScope.SetFunc("all-proto-files-under", allFilesUnder("*.proto")) 977 globalScope.SetFunc("all-aidl-files-under", allFilesUnder("*.aidl")) 978 globalScope.SetFunc("all-Iaidl-files-under", allFilesUnder("I*.aidl")) 979 globalScope.SetFunc("all-logtags-files-under", allFilesUnder("*.logtags")) 980 globalScope.SetFunc("all-subdir-java-files", allSubdirJavaFiles) 981 globalScope.SetFunc("all-makefiles-under", includeIgnored) 982 globalScope.SetFunc("first-makefiles-under", includeIgnored) 983 globalScope.SetFunc("all-named-subdir-makefiles", includeIgnored) [all …]
|
/aosp12/build/soong/androidmk/parser/ |
H A D | scope.go | 25 SetFunc(name string, f func([]string) []string) 58 func (s *scope) SetFunc(name string, f func([]string) []string) { func
|