Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for choltype (0.27 sec)

  1. 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 19 08:18:09 GMT 2024
    - Last Modified: Wed Sep 15 09:32:47 GMT 2021
    - 5.7K bytes
    - Viewed (0)
  2. 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 Mar 22 08:18:09 GMT 2024
    - Last Modified: Thu Mar 21 15:21:57 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  3. 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 19 08:18:09 GMT 2024
    - Last Modified: Wed Oct 25 13:04:15 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  4. 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 19 08:18:09 GMT 2024
    - Last Modified: Tue Oct 31 12:24:16 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  5. 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 Apr 19 08:18:09 GMT 2024
    - Last Modified: Thu Mar 14 06:10:31 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			Elt: sub.Go,
    		}
    		// Recalculate t.Size now that we know sub.Size.
    		t.Size = count * sub.Size
    		t.C.Set("__typeof__(%s[%d])", sub.C, dt.Count)
    
    	case *dwarf.BoolType:
    		t.Go = c.bool
    		t.Align = 1
    
    	case *dwarf.CharType:
    		if t.Size != 1 {
    			fatalf("%s: unexpected: %d-byte char type - %s", lineno(pos), t.Size, dtype)
    		}
    		t.Go = c.int8
    		t.Align = 1
    
    	case *dwarf.EnumType:
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. 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 19 08:18:09 GMT 2024
    - Last Modified: Mon Jan 29 09:37:59 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/ast.go

    			f.walk(n.Results, ctxParam, visit)
    		}
    	case *ast.InterfaceType:
    		f.walk(n.Methods, ctxField, visit)
    	case *ast.MapType:
    		f.walk(&n.Key, ctxType, visit)
    		f.walk(&n.Value, ctxType, visit)
    	case *ast.ChanType:
    		f.walk(&n.Value, ctxType, visit)
    
    	case *ast.BadStmt:
    	case *ast.DeclStmt:
    		f.walk(n.Decl, ctxDecl, visit)
    	case *ast.EmptyStmt:
    	case *ast.LabeledStmt:
    		f.walk(n.Stmt, ctxStmt, visit)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  9. 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 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  10. 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 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top