Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for Contains (0.34 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirCallableFilteringScope.kt

            if (!cachedCallableNames.contains(name)) return
    
            baseScope.processFunctionsByName(name) { function ->
                if (isTargetCallable(function)) {
                    processor(function)
                }
            }
        }
    
        override fun processPropertiesByName(name: Name, processor: (FirVariableSymbol<*>) -> Unit) {
            if (!cachedCallableNames.contains(name)) return
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

         * Return a sequence of [KaClassifierSymbol] which current scope contains, if classifier name present in [names].
         *
         * @see getClassifierSymbols
         */
        public fun getClassifierSymbols(vararg names: Name): Sequence<KaClassifierSymbol> =
            getClassifierSymbols(names.toList())
    
        /**
         * Return a sequence of [KaConstructorSymbol] which current scope contain
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         * Return a sequence of [KaClassifierSymbol] which current scope contains, if classifier name present in [names].
         *
         * @see getClassifierSymbols
         */
        public fun getClassifierSymbols(vararg names: Name): Sequence<KaClassifierSymbol> =
            getClassifierSymbols(names.toList())
    
        /**
         * Return a sequence of [KaConstructorSymbol] which current scope contain
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinAnnotationsResolver.kt

         */
        public fun annotationsOnDeclaration(declaration: KtAnnotated): Set<ClassId>
    }
    
    public interface KotlinAnnotationsResolverFactory : KotlinPlatformComponent {
        /**
         * @param searchScope A scope in which the created [KotlinAnnotationsResolver] will operate. Make sure that this scope contains all
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KtEmptyAnnotationsList.kt

            return Collections.emptyIterator()
        }
    
        override fun get(index: Int): KaAnnotation = withValidityAssertion {
            throw IndexOutOfBoundsException("Index $index out of bounds")
        }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            return false
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
            return emptyList()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

        }
    }
    
    /**
     * Creates a [KotlinDeclarationProvider] providing symbols within the given [scope].
     *
     * The [contextualModule] is the module which contains the symbols to be provided, if applicable. The declaration provider may use the
     * contextual module to provide declarations differently, such as providing alternative declarations for an outsider module. Some
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/commonColumnMap.dfprop

    # /---------------------------------------------------------------------------
    # commonColumnMap: (Default map:{})
    #
    # The definition of common column(contains auto set-up).
    # For example, the date you registered the record,
    # the user who updated the record and so on...
    # The column names are treated as case insensitive.
    #
    # The variable '$$AccessContext$$' means allcommon.AccessContext.
    #
    # Example:
    # map:{
    #     ; commonColumnMap = map:{
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 1.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForReceiverParameter.kt

            return backingAnnotations.iterator()
        }
    
        override fun get(index: Int): KaAnnotation = withValidityAssertion {
            return backingAnnotations[index]
        }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            return hasAnnotation(firCallableSymbol, classId, useSiteSession, receiverParameter)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.KtClass
    import org.jetbrains.kotlin.psi.KtClassOrObject
    import org.jetbrains.kotlin.psi.psiUtil.contains
    import kotlin.collections.filter
    
    @OptIn(LLFirInternals::class, SymbolInternals::class)
    internal class KotlinStandaloneFirDirectInheritorsProvider(private val project: Project) : KotlinDirectInheritorsProvider {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtResolveExtensionInfoProvider.kt

    }
    
    public typealias KtResolveExtensionInfoProvider = KaResolveExtensionInfoProvider
    
    public interface KaResolveExtensionInfoProviderMixIn : KaSessionMixIn {
        /**
         * Returns [KaScope] which contains all top-level callable declarations which are generated by [KaResolveExtension]
         *
         * @see org.jetbrains.kotlin.analysis.api.resolve.extensions.KaResolveExtension
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top