Home
last modified time | relevance | path

Searched defs:kType (Results 1 – 2 of 2) sorted by relevance

/navigation/navigation-common/src/androidUnitTest/kotlin/androidx/navigation/serialization/
DNavTypeConverterTest.kt44 val kType = typeOf<Int>() in matchInt() constant
51 val kType = typeOf<Int?>() in matchIntNullable() constant
61 val kType = typeOf<Boolean>() in matchBoolean() constant
68 val kType = typeOf<Boolean?>() in matchBooleanNullable() constant
78 val kType = typeOf<Double>() in matchDouble() constant
85 val kType = typeOf<Double?>() in matchDoubleNullable() constant
92 val kType = typeOf<Float>() in matchFloat() constant
99 val kType = typeOf<Float?>() in matchFloatNullable() constant
109 val kType = typeOf<Long>() in matchLong() constant
116 val kType = typeOf<Long?>() in matchLongNullable() constant
[all …]
/navigation/navigation-common/src/commonMain/kotlin/androidx/navigation/serialization/
DRouteSerializer.kt166 typeMap.keys.find { kType -> matchKType(kType) }?.let { typeMap[it] } as? NavType<Any?> in computeNavType() method