Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for scope (0.16 sec)

  1. .idea/scopes/scope_settings.xml

    Maxim Shafirov <******@****.***> 1308913888 +0400
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Jun 24 11:11:28 GMT 2011
    - 139 bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         *       fun foo() { // scope5  FirLocalScope - enum entry: Local
         *
         *         // Distance to scopes from <element> in the order from the closest:
         *         //   scope5 -> scope4 -> scope6 -> scope3 -> scope1 -> scope2
         *         <element>
         *
         *       }
         *       companion object {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

                    // Add an empty scope to the shadowed set to give GlobalSearchScope.union something
                    // to work with if there are no extension tools.
                    // If there are extension tools, any empty scopes, whether from shadowedSearchScope
                    // on the extension tools or from this add() call, will be ignored.
                    add(GlobalSearchScope.EMPTY_SCOPE)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 18 10:43:08 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  4. .idea/scopes/all_except_testData.xml

    <component name="DependencyValidationManager">
      <scope name="all except testData" pattern="!file[*]:*//testData//*&amp;&amp;!file[*]:testData//*" />
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Nov 28 11:27:57 GMT 2012
    - 162 bytes
    - Viewed (0)
  5. .idea/inspectionProfiles/idea_default.xml

        </inspection_tool>
        <inspection_tool class="JavadocReference" enabled="true" level="WARNING" enabled_by_default="true">
          <scope name="IDEA Test Sources" level="ERROR" enabled="false" />
          <scope name="idea openapi" level="WARNING" enabled="true" />
          <scope name="runtime.classes" level="ERROR" enabled="true" />
        </inspection_tool>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Nov 09 20:59:03 GMT 2023
    - 32.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            }
        }
    
        /**
         * Returns the [KtSymbol]s called [fqName] found in the member scope and companion object's member scope of the [KtDeclaration]s that
         * contain the [contextElement].
         *
         * If [fqName] has two or more segments, e.g. `Foo.bar`, the member and companion object scope of the containing [KtDeclaration] will be
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.scopes.KtFe10FileScope
    import org.jetbrains.kotlin.analysis.api.descriptors.scopes.KtFe10PackageScope
    import org.jetbrains.kotlin.analysis.api.descriptors.scopes.KtFe10ScopeLexical
    import org.jetbrains.kotlin.analysis.api.descriptors.scopes.KtFe10ScopeMember
    import org.jetbrains.kotlin.analysis.api.descriptors.scopes.KtFe10ScopeNonStaticMember
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10ScopeResolution.kt

    ) : KtFe10ScopeResolution() {
        override fun getPossibleCallableNames(): Set<Name> = withValidityAssertion {
            return scope.getFunctionNames() + scope.getVariableNames()
        }
    
        override fun getPossibleClassifierNames(): Set<Name> = withValidityAssertion {
            return scope.getClassifierNames() ?: emptySet()
        }
    
        override fun getConstructors(): Sequence<KtConstructorSymbol> = sequence {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeSubstitution.kt

        override fun getDeclarationScope(scope: KtTypeScope): KtScope {
            return when (scope) {
                is KtFirDelegatingTypeScope -> KtFirDelegatingNamesAwareScope(scope.firScope, analysisSession.firSymbolBuilder)
                is KtCompositeTypeScope -> KtCompositeScope.create(scope.subScopes.map(::getDeclarationScope), token)
                else -> unexpectedElementError<KtTypeScope>(scope)
            }
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri May 19 11:53:15 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

        override fun processClassifiersByNameWithSubstitution(name: Name, processor: (FirClassifierSymbol<*>, ConeSubstitutor) -> Unit) {
            // We have to filter out classes from supertypes because the base scope might be a use-site scope that provides inner classes from
            // supertypes.
            delegate.processClassifiersByNameWithSubstitution(name) { classifier, substitutor ->
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 2.7K bytes
    - Viewed (0)
Back to top