Lines Matching refs:scopeProperties

1435 		scopeProperties := module.scopeToProperties[scope]
1436 if scopeProperties.Enabled != nil {
1445 scopeProperties := module.scopeToProperties[scope]
1455 enabled := proptools.BoolDefault(scopeProperties.Enabled, defaultEnabledStatus)
1743 scopeProperties := module.scopeToProperties[apiScope]
1744 if scopeProperties.Sdk_version != nil {
1745 return proptools.String(scopeProperties.Sdk_version)
2678 scopeProperties map[*apiScope]*sdkLibraryScopeProperties member
2726 scopeProperties := make(map[*apiScope]*sdkLibraryScopeProperties)
2730 scopeProperties[apiScope] = field.Addr().Interface().(*sdkLibraryScopeProperties)
2733 return allScopePropertiesPtr.Interface(), scopeProperties
2741 module.scopeProperties = scopeToProperties
2784 for apiScope, scopeProperties := range module.scopeProperties {
2785 if len(scopeProperties.Jars) == 0 {
2789 module.createJavaImportForStubs(mctx, apiScope, scopeProperties)
2791 if len(scopeProperties.Stub_srcs) > 0 {
2792 module.createPrebuiltStubsSources(mctx, apiScope, scopeProperties)
2795 if scopeProperties.Current_api != nil {
2796 module.createPrebuiltApiContribution(mctx, apiScope, scopeProperties)
2806 …ortForStubs(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibrarySc…
2823 props.Sdk_version = scopeProperties.Sdk_version
2826 props.Libs = append(module.properties.Libs, scopeProperties.Libs...)
2827 props.Jars = scopeProperties.Jars
2843 …tubsSources(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibrarySc…
2855 props.Srcs = scopeProperties.Stub_srcs
2863 …ontribution(mctx android.DefaultableHookContext, apiScope *apiScope, scopeProperties *sdkLibrarySc…
2864 api_file := scopeProperties.Current_api
2889 for apiScope, scopeProperties := range module.scopeProperties {
2890 if len(scopeProperties.Jars) == 0 {
2897 if len(scopeProperties.Stub_srcs) > 0 {
2998 for apiScope, scopeProperties := range module.scopeProperties {
2999 if len(scopeProperties.Jars) == 0 {
3004 paths.annotationsZip = android.OptionalPathForModuleSrc(ctx, scopeProperties.Annotations)
3005 paths.currentApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Current_api)
3006 paths.removedApiFilePath = android.OptionalPathForModuleSrc(ctx, scopeProperties.Removed_api)
3541 Scopes map[*apiScope]*scopeProperties
3591 type scopeProperties struct { struct
3606 s.Scopes = make(map[*apiScope]*scopeProperties)
3615 properties := scopeProperties{}