Lines Matching refs:moduleName
100 func isAidlModule(moduleName string, config android.Config) bool {
102 if android.InList(moduleName, i.internalModuleNames) {
207 versions[dep.verLang] = append(versions[dep.verLang], dep.moduleName())
461 func addUnstableModule(mctx android.LoadHookContext, moduleName string) {
465 *unstableModules = append(*unstableModules, moduleName)
608 func hasVersionSuffix(moduleName string) bool {
609 hasVersionSuffix, _ := regexp.MatchString("-V\\d+$", moduleName)
613 func parseModuleWithVersion(moduleName string) (string, string) {
614 if hasVersionSuffix(moduleName) {
615 versionIdx := strings.LastIndex(moduleName, "-V")
619 return moduleName[:versionIdx], moduleName[versionIdx+len("-V"):]
621 return moduleName, ""
625 return wrapFunc("", moduleNames, "", func(moduleName string) string {
626 moduleNameWithoutVersion, _ := parseModuleWithVersion(moduleName)
811 func (d DepInfo) moduleName() string { func