Lines Matching refs:scopePaths

526 type scopePaths struct {  struct
552 func (paths *scopePaths) extractStubsLibraryInfoFromDependency(ctx android.ModuleContext, dep andro…
566 func (paths *scopePaths) treatDepAsApiStubsProvider(dep android.Module, action func(provider ApiStu…
575 func (paths *scopePaths) treatDepAsApiStubsSrcProvider(dep android.Module, action func(provider Api…
584 func (paths *scopePaths) extractApiInfoFromApiStubsProvider(provider ApiStubsProvider) {
589 func (paths *scopePaths) extractApiInfoFromDep(ctx android.ModuleContext, dep android.Module) error…
595 func (paths *scopePaths) extractStubsSourceInfoFromApiStubsProviders(provider ApiStubsSrcProvider) {
599 func (paths *scopePaths) extractStubsSourceInfoFromDep(ctx android.ModuleContext, dep android.Modul…
605 func (paths *scopePaths) extractStubsSourceAndApiInfoFromApiStubsProvider(ctx android.ModuleContext…
646 scopePaths map[*apiScope]*scopePaths member
814 func (c *commonToSdkLibraryAndImport) getScopePathsCreateIfNeeded(scope *apiScope) *scopePaths {
815 if c.scopePaths == nil {
816 c.scopePaths = make(map[*apiScope]*scopePaths)
818 paths := c.scopePaths[scope]
820 paths = &scopePaths{}
821 c.scopePaths[scope] = paths
827 func (c *commonToSdkLibraryAndImport) findScopePaths(scope *apiScope) *scopePaths {
828 if c.scopePaths == nil {
832 return c.scopePaths[scope]
837 func (c *commonToSdkLibraryAndImport) findClosestScopePath(scope *apiScope) *scopePaths {
869 …braryAndImport) selectScopePaths(ctx android.BaseModuleContext, kind android.SdkKind) *scopePaths {
1218 scopePaths := module.getScopePathsCreateIfNeeded(apiScope)
1222 scopeTag.extractDepInfo(ctx, to, scopePaths)
2152 scopePaths := module.getScopePathsCreateIfNeeded(apiScope)
2156 scopeTag.extractDepInfo(ctx, to, scopePaths)