Home
last modified time | relevance | path

Searched refs:selfTypeReference (Results 1 – 3 of 3) sorted by relevance

/appfunctions/appfunctions-compiler/src/main/java/androidx/appfunctions/compiler/core/
DAppFunctionTypeReference.kt33 class AppFunctionTypeReference(val selfTypeReference: KSTypeReference) { in <lambda>() constant in androidx.appfunctions.compiler.core.AppFunctionTypeReference
43 selfTypeReference.asStringWithoutNullQualifier() in SUPPORTED_SINGLE_PRIMITIVE_TYPES -> in <lambda>()
45 selfTypeReference.asStringWithoutNullQualifier() in SUPPORTED_ARRAY_PRIMITIVE_TYPES -> in <lambda>()
47 isAppFunctionSerializableProxyType(selfTypeReference) -> SERIALIZABLE_PROXY_SINGULAR in <lambda>()
48 isSupportedPrimitiveListType(selfTypeReference) -> PRIMITIVE_LIST in <lambda>()
49 isAppFunctionSerializableProxyListType(selfTypeReference) -> SERIALIZABLE_PROXY_LIST in <lambda>()
50 isAppFunctionSerializableListType(selfTypeReference) -> SERIALIZABLE_LIST in <lambda>()
51 isAppFunctionSerializableType(selfTypeReference) -> SERIALIZABLE_SINGULAR in <lambda>()
55 selfTypeReference, in <lambda>()
65 val isNullable: Boolean by lazy { selfTypeReference.toTypeName().isNullable } in <lambda>()
[all …]
DAnnotatedAppFunctions.kt331 appFunctionTypeReference.selfTypeReference in <lambda>()
383 appFunctionTypeReference.selfTypeReference in <lambda>()
638 PRIMITIVE_SINGULAR -> selfTypeReference.toAppFunctionDatatype() in <lambda>()
651 PRIMITIVE_ARRAY -> selfTypeReference.toAppFunctionDatatype() in <lambda>()
659 selfTypeReference.ensureQualifiedTypeName().asString(), in <lambda>()
660 selfTypeReference, in <lambda>()
/appfunctions/appfunctions-compiler/src/main/java/androidx/appfunctions/compiler/processors/
DAppFunctionSerializableFactoryCodeBuilder.kt510 "param_type" to afType.selfTypeReference.toTypeName(), in <lambda>()