Home
last modified time | relevance | path

Searched refs:stringBaseName (Results 1 – 5 of 5) sorted by relevance

/appfunctions/appfunctions-compiler/src/test/test-data/input/
DNestedDerivedSerializable.KT7 open val stringBaseName: String, constant in com.testdata.NestedBaseSerializable
13 override val stringBaseName: String, constant in com.testdata.NonNestedChildSerializable
16 ) : NestedBaseSerializable(stringBaseName, nestedBase) {}
20 override val stringBaseName: String, constant in com.testdata.NestedDerivedSerializable
24 ) : NonNestedChildSerializable(stringBaseName, nestedBase, longBaseValue)
/appfunctions/appfunctions-compiler/src/test/test-data/output/
D$NestedBaseSerializableFactory.KT12 val stringBaseName = checkNotNull(appFunctionData.getStringOrNull("stringBaseName")) in fromAppFunctionData() constant
19 val resultNestedBaseSerializable = NestedBaseSerializable(stringBaseName, nestedBase) in fromAppFunctionData()
28 val stringBaseName = nestedBaseSerializable_appFunctionSerializable.stringBaseName in toAppFunctionData() constant
29 builder.setString("stringBaseName", stringBaseName) in toAppFunctionData()
D$NonNestedChildSerializableFactory.KT12 val stringBaseName = checkNotNull(appFunctionData.getStringOrNull("stringBaseName")) in fromAppFunctionData() constant
20 …val resultNonNestedChildSerializable = NonNestedChildSerializable(stringBaseName, nestedBase, long… in fromAppFunctionData()
29 val stringBaseName = nonNestedChildSerializable_appFunctionSerializable.stringBaseName in toAppFunctionData() constant
30 builder.setString("stringBaseName", stringBaseName) in toAppFunctionData()
D$NestedDerivedSerializableFactory.KT13 val stringBaseName = checkNotNull(appFunctionData.getStringOrNull("stringBaseName")) in fromAppFunctionData() constant
26 …val resultNestedDerivedSerializable = NestedDerivedSerializable(stringBaseName, nestedBase, longBa… in fromAppFunctionData()
36 val stringBaseName = nestedDerivedSerializable_appFunctionSerializable.stringBaseName in toAppFunctionData() constant
37 builder.setString("stringBaseName", stringBaseName) in toAppFunctionData()
D$NonNestedLongBaseSerializableFactory.KT14 val stringBaseName = appFunctionData.getString("stringBaseName") in fromAppFunctionData() constant
21 return NonNestedLongBaseSerializable(stringBaseName, nestedStringBaseSerializable, in fromAppFunctionData()
30 builder.setString("stringBaseName", nonNestedLongBaseSerializable.stringBaseName) in toAppFunctionData()