Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 997 for Is (4.27 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                    false
                is KtTypeParameter ->
                    false
                is KtLambdaExpression ->
                    false
                is KtScriptInitializer ->
                    false
    
                // The last expression of a block is considered used iff the block itself is used.
                is KtBlockExpression ->
                    parent.statements.lastOrNull() == child && isUsed(parent)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        return when (this) {
            is KaFe10PsiSymbol<*, *> -> descriptor
            is KaFe10DescSymbol<*> -> descriptor
            is KaFe10DescSyntheticFieldSymbol -> descriptor
            is KaFe10PsiDefaultPropertyGetterSymbol -> descriptor
            is KaFe10PsiDefaultPropertySetterSymbol -> descriptor
            is KaFe10PsiDefaultSetterParameterSymbol -> descriptor
            is KaFe10DescDefaultPropertySetterSymbol -> null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            is KaSubstitutor -> "<complex substitutor>"
            is KaDiagnostic -> "$severity<$factoryName: $defaultMessage>"
            is KaType -> render()
            is Enum<*> -> name
            is Name -> asString()
            is CallableId -> toString()
            is KaCallableSignature<*> -> stringRepresentation(this)
            else -> buildString {
                val clazz = this@with::class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationUseSiteTargetRenderer.kt

                    is KaReceiverParameterSymbol -> true
                    !is KaCallableSymbol -> return
                    is KaAnonymousFunctionSymbol -> true
                    is KaConstructorSymbol -> true
                    is KaFunctionSymbol -> true
                    is KaPropertyGetterSymbol -> annotation.useSiteTarget != AnnotationUseSiteTarget.PROPERTY_GETTER
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                }
            }
    
            when (symbol) {
                is KaLocalVariableSymbol,
                is KaAnonymousFunctionSymbol,
                is KaAnonymousObjectSymbol,
                is KaDestructuringDeclarationSymbol -> {
                    return getContainingDeclarationByPsi(symbol)
                }
    
                is KaClassInitializerSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

      repositories are "really" offline, since offline mode is more of a behavior,
      and this will lead to counter-intuitive results. A different feature may exist
      unimplemented, which is to detect when the network is down and provide better
      feedback for that case. However, when offline mode is declared, nothing
      earmarked as remote should be accessed, regardless of whether it is actually
      a physically local resource.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolDeclarationOverridesProvider.kt

            require(callableSymbol is KaFirSymbol<*>)
            if (callableSymbol is KaFirBackingFieldSymbol) return emptyList()
            if (callableSymbol is KaValueParameterSymbol) {
                return callableSymbol.getDirectlyOverriddenSymbols()
            }
            if (callableSymbol is KaCallableSymbol && callableSymbol.firSymbol is FirIntersectionCallableSymbol) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFlexibleTypeRenderer.kt

                }
            }
    
            private fun isNullabilityFlexibleType(lower: KaType, upper: KaType): Boolean {
                val isTheSameType = lower is KaNonErrorClassType && upper is KaNonErrorClassType && lower.classId == upper.classId ||
                        lower is KaTypeParameterType && upper is KaTypeParameterType && lower.symbol == upper.symbol
                if (isTheSameType &&
                    lower.nullability == KaTypeNullability.NON_NULLABLE
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtContractDescriptionElementRenderer.kt

                }
                is KaContractReturnsContractEffectDeclaration -> {
                    when (value) {
                        is KaContractReturnsNotNullEffectDeclaration, is KaContractReturnsSuccessfullyEffectDeclaration -> Unit
                        is KaContractReturnsSpecificValueEffectDeclaration ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCandidateInfo.kt

        /**
         * Returns true if the [candidate] is in the final set of candidates that the call is actually resolved to. There can be multiple
         * candidates if the call is ambiguous.
         */
        public val isInBestCandidates: Boolean by validityAsserted(isInBestCandidates)
    }
    
    public typealias KtCallCandidateInfo = KaCallCandidateInfo
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top