Lines Matching refs:scopePaths
495 type scopePaths struct { struct
516 func (paths *scopePaths) extractStubsLibraryInfoFromDependency(dep android.Module) error { argument
526 func (paths *scopePaths) treatDepAsApiStubsProvider(dep android.Module, action func(provider ApiStu… argument
535 func (paths *scopePaths) treatDepAsApiStubsSrcProvider(dep android.Module, action func(provider Api… argument
544 func (paths *scopePaths) extractApiInfoFromApiStubsProvider(provider ApiStubsProvider) { argument
549 func (paths *scopePaths) extractApiInfoFromDep(dep android.Module) error { argument
555 func (paths *scopePaths) extractStubsSourceInfoFromApiStubsProviders(provider ApiStubsSrcProvider) { argument
559 func (paths *scopePaths) extractStubsSourceInfoFromDep(dep android.Module) error { argument
565 func (paths *scopePaths) extractStubsSourceAndApiInfoFromApiStubsProvider(dep android.Module) error… argument
597 scopePaths map[*apiScope]*scopePaths member
740 func (c *commonToSdkLibraryAndImport) getScopePathsCreateIfNeeded(scope *apiScope) *scopePaths {
741 if c.scopePaths == nil {
742 c.scopePaths = make(map[*apiScope]*scopePaths)
744 paths := c.scopePaths[scope]
746 paths = &scopePaths{}
747 c.scopePaths[scope] = paths
753 func (c *commonToSdkLibraryAndImport) findScopePaths(scope *apiScope) *scopePaths {
754 if c.scopePaths == nil {
758 return c.scopePaths[scope]
763 func (c *commonToSdkLibraryAndImport) findClosestScopePath(scope *apiScope) *scopePaths {
1034 scopePaths := module.getScopePathsCreateIfNeeded(apiScope)
1038 scopeTag.extractDepInfo(ctx, to, scopePaths)
1920 scopePaths := module.getScopePathsCreateIfNeeded(apiScope)
1924 scopeTag.extractDepInfo(ctx, to, scopePaths)