Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for choltype (0.4 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

        /**
         * @return How many qualifiers needs to be dropped from [wholeType] to get [nestedType].
         *
         * Example: to get `foo.bar` from `foo.bar.Baz.Inner`, you need to drop 2 qualifiers (`Inner` and `Baz`).
         */
        private fun countQualifiersToDrop(wholeType: KtUserType, nestedType: KtUserType): Int {
            val qualifierIndex = generateSequence(wholeType) { it.qualifier }.indexOf(nestedType)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            get() = withValidityAssertion { analysisContext.builtIns.booleanType.toKtType(analysisContext) }
    
        override val CHAR: KtType
            get() = withValidityAssertion { analysisContext.builtIns.charType.toKtType(analysisContext) }
    
        override val STRING: KtType
            get() = withValidityAssertion { analysisContext.builtIns.stringType.toKtType(analysisContext) }
    
        override val UNIT: KtType
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jan 29 09:37:59 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg go/ast, method (CommentMap) Filter(Node) CommentMap
    pkg go/ast, method (CommentMap) String() string
    pkg go/ast, method (CommentMap) Update(Node, Node) Node
    pkg go/ast, type ChanType struct, Arrow token.Pos
    pkg go/ast, type CommentMap map[Node][]*CommentGroup
    pkg go/build, const AllowBinary = 2
    pkg go/build, const FindOnly = 1
    pkg go/build, type Context struct, InstallSuffix string
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLParameterConversion.kt

        private val callTemplate: String,
        private val callType: KType,
        override val importsToAdd: List<String> = emptyList()
    ) : HLParameterConversion() {
        override fun convertExpression(expression: String, context: ConversionContext) =
            callTemplate.replace("{0}", expression)
    
        override fun convertType(type: KType): KType = callType
    }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Sep 15 09:32:47 GMT 2021
    - 5.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt

    object ArgumentsConverterGenerator {
        fun render(file: File, packageName: String) {
            val convertArgumentFunctionCallConversion = HLFunctionCallConversion(
                "$CONVERT_ARGUMENT({0}, firSymbolBuilder)",
                callType = Any::class.createType(nullable = true)
            )
            val convertersMap = FirToKtConversionCreator.getAllConverters(convertArgumentFunctionCallConversion)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Oct 25 13:04:15 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

            }
    
            return KtSimpleFunctionCall(
                partiallyAppliedSymbol,
                argumentMapping,
                toTypeArgumentsMapping(partiallyAppliedSymbol),
                call.callType == Call.CallType.INVOKE
            )
        }
    
        private fun ResolvedCall<*>.toPartiallyAppliedVariableSymbol(context: BindingContext): KtPartiallyAppliedVariableSymbol<KtVariableLikeSymbol>? {
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Apr 29 12:48:54 GMT 2024
    - 34.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirBuiltInTypes.kt

        override val FLOAT: KtType by cachedBuiltin(builtinTypes.floatType)
        override val DOUBLE: KtType by cachedBuiltin(builtinTypes.doubleType)
    
        override val CHAR: KtType by cachedBuiltin(builtinTypes.charType)
        override val BOOLEAN: KtType by cachedBuiltin(builtinTypes.booleanType)
        override val STRING: KtType by cachedBuiltin(builtinTypes.stringType)
    
        override val UNIT: KtType by cachedBuiltin(builtinTypes.unitType)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 31 12:24:16 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg debug/dwarf, method (*BoolType) Basic() *BasicType
    pkg debug/dwarf, method (*BoolType) Common() *CommonType
    pkg debug/dwarf, method (*BoolType) Size() int64
    pkg debug/dwarf, method (*BoolType) String() string
    pkg debug/dwarf, method (*CharType) Basic() *BasicType
    pkg debug/dwarf, method (*CharType) Common() *CommonType
    pkg debug/dwarf, method (*CharType) Size() int64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top