Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sizeof (0.17 sec)

  1. .idea/uiDesigner.xml

              <preferred-size width="150" height="-1" />
            </default-constraints>
          </item>
          <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
            <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
              <preferred-size width="150" height="-1" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Oct 24 15:06:04 GMT 2013
    - 9.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                val indexOfParameterizedType = innerTypesAsList.indexOfFirst { innerPart -> innerPart.arguments.isNotEmpty() }
    
                return if (indexOfParameterizedType < 0 || innerTypesAsList.size == 1) {
                    val classifier = type.constructor.declarationDescriptor as? ClassifierDescriptorWithTypeParameters
                        ?: throw IllegalArgumentException(type.toString())
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Mar 10 11:03:45 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeCreator.kt

                return KtFe10ClassErrorType(kotlinType, analysisContext)
            }
    
            val typeParameters = descriptor.typeConstructor.parameters
            val type = if (typeParameters.size == builder.arguments.size) {
                val projections = builder.arguments.mapIndexed { index, arg ->
                    when (arg) {
                        is KtStarTypeProjection -> StarProjectionImpl(typeParameters[index])
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Jan 10 12:54:17 GMT 2023
    - 4.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10IntersectionType.kt

        override fun asStringForDebugging(): String = withValidityAssertion { fe10Type.asStringForDebugging(analysisContext) }
    
        override val conjuncts: List<KtType> by cached {
            val result = ArrayList<KtType>(supertypes.size)
            val isNullable = fe10Type.isMarkedNullable
            for (supertype in supertypes) {
                val mappedSupertype = if (isNullable) supertype.makeNullable() else supertype
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Jan 12 10:48:21 GMT 2023
    - 2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10TypeSystemCommonBackendContextForTypeMapping.kt

            if (this is ErrorTypeConstructor) {
                return ErrorUtils.createErrorType(kind, this, *formatParams)
            }
            require(this is TypeConstructor)
            require(parameters.size == arguments.size)
    
            val declaration = declarationDescriptor
            if (declaration == null) {
                val errorArguments = arguments.map { TypeProjectionImpl(it as KotlinType) }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Feb 10 16:01:04 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorProvider.kt

            val substitutors = inheritancePath.map { (type, symbol) ->
                type.substitutorForSuperType(rootModuleSession, symbol)
            }
            return when (substitutors.size) {
                0 -> KtSubstitutor.Empty(token)
                else -> {
                    val chained = substitutors.reduce { left, right -> left.chain(right) }
                    firSymbolBuilder.typeBuilder.buildSubstitutor(chained)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Oct 06 11:39:33 GMT 2023
    - 3.1K bytes
    - Viewed (0)
Back to top