Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AnyType (0.15 sec)

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

        override val unit: KaType by cachedBuiltin(builtinTypes.unitType)
        override val nothing: KaType by cachedBuiltin(builtinTypes.nothingType)
        override val any: KaType by cachedBuiltin(builtinTypes.anyType)
    
        override val throwable: KaType by cachedBuiltin(builtinTypes.throwableType)
        override val nullableAny: KaType by cachedBuiltin(builtinTypes.nullableAnyType)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    class TFL_AnyTypeOf<list<Type> allowedRuntimeTypes, string description = "",
                        list<Type> allowedOpTypes = [AnyType]> :
      AnyTypeOf<allowedOpTypes, description>,
      TFL_RuntimeType<AnyTypeOf<allowedRuntimeTypes, description>>;
    
    class TFL_TensorOf<list<Type> allowedRuntimeTypes,
                       list<Type> allowedOpTypes = [AnyType]> :
      TensorOf<allowedOpTypes>, TFL_RuntimeType<TensorOf<allowedRuntimeTypes>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            get() = withValidityAssertion { analysisContext.builtIns.nothingType.toKtType(analysisContext) }
    
        override val any: KaType
            get() = withValidityAssertion { analysisContext.builtIns.anyType.toKtType(analysisContext) }
    
        override val throwable: KaType
            get() = withValidityAssertion { analysisContext.builtIns.throwable.defaultType.toKtType(analysisContext) }
    
        override val nullableAny: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        }
    
        val hasClassSupertype = supertypes.any { (it.constructor.declarationDescriptor as? ClassDescriptor)?.kind == ClassKind.CLASS }
        return if (hasClassSupertype) supertypes else listOf(builtIns.anyType) + supertypes
    }
    
    
    internal fun CallableMemberDescriptor.getSymbolPointerSignature(): String {
        return DescriptorRenderer.FQ_NAMES_IN_TYPES.render(this)
    }
    
    internal fun createKtInitializerValue(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            )
        }
    
        private val equalsSymbolInAny: FirNamedFunctionSymbol? by lazy(LazyThreadSafetyMode.PUBLICATION) {
            val session = analysisSession.useSiteSession
            val anyFirClass = session.builtinTypes.anyType.toRegularClassSymbol(session) ?: return@lazy null
            val scope = session.declaredMemberScope(
                anyFirClass,
                memberRequiredPhase = FirResolvePhase.STATUS,
            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top