/external/kotlinx.serialization/core/commonMain/src/kotlinx/serialization/encoding/ |
D | AbstractDecoder.kt | 22 …public open fun decodeValue(): Any = throw SerializationException("${this::class} can't retrieve u… in decodeValue() method in kotlinx.serialization.encoding.AbstractDecoder 26 override fun decodeBoolean(): Boolean = decodeValue() as Boolean in decodeValue() 27 override fun decodeByte(): Byte = decodeValue() as Byte in decodeValue() 28 override fun decodeShort(): Short = decodeValue() as Short in decodeValue() 29 override fun decodeInt(): Int = decodeValue() as Int in decodeValue() 30 override fun decodeLong(): Long = decodeValue() as Long in decodeValue() 31 override fun decodeFloat(): Float = decodeValue() as Float in decodeValue() 32 override fun decodeDouble(): Double = decodeValue() as Double in decodeValue() 33 override fun decodeChar(): Char = decodeValue() as Char in decodeValue() 34 override fun decodeString(): String = decodeValue() as String in decodeValue() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/ |
D | PlainDSAEncoding.java | 31 decodeValue(n, encoding, 0, valueLength), in decode() 32 decodeValue(n, encoding, valueLength, valueLength), in decode() 46 protected BigInteger decodeValue(BigInteger n, byte[] buf, int off, int len) in decodeValue() method in PlainDSAEncoding
|
D | StandardDSAEncoding.java | 32 BigInteger r = decodeValue(n, seq, 0); in decode() 33 BigInteger s = decodeValue(n, seq, 1); in decode() 55 protected BigInteger decodeValue(BigInteger n, ASN1Sequence s, int pos) in decodeValue() method in StandardDSAEncoding
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/signers/ |
D | PlainDSAEncoding.java | 35 decodeValue(n, encoding, 0, valueLength), in decode() 36 decodeValue(n, encoding, valueLength, valueLength), in decode() 50 protected BigInteger decodeValue(BigInteger n, byte[] buf, int off, int len) in decodeValue() method in PlainDSAEncoding
|
D | StandardDSAEncoding.java | 36 BigInteger r = decodeValue(n, seq, 0); in decode() 37 BigInteger s = decodeValue(n, seq, 1); in decode() 59 protected BigInteger decodeValue(BigInteger n, ASN1Sequence s, int pos) in decodeValue() method in StandardDSAEncoding
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/signers/ |
D | PlainDSAEncoding.java | 35 decodeValue(n, encoding, 0, valueLength), in decode() 36 decodeValue(n, encoding, valueLength, valueLength), in decode() 50 protected BigInteger decodeValue(BigInteger n, byte[] buf, int off, int len) in decodeValue() method in PlainDSAEncoding
|
D | StandardDSAEncoding.java | 36 BigInteger r = decodeValue(n, seq, 0); in decode() 37 BigInteger s = decodeValue(n, seq, 1); in decode() 59 protected BigInteger decodeValue(BigInteger n, ASN1Sequence s, int pos) in decodeValue() method in StandardDSAEncoding
|
/external/kotlinx.serialization/guide/example/ |
D | example-formats-12.kt | 36 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats12.ListDecoder
|
D | example-formats-13.kt | 36 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats13.ListDecoder
|
D | example-formats-15.kt | 44 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats15.ListDecoder
|
D | example-formats-14.kt | 41 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats14.ListDecoder
|
/external/kotlinx.serialization/core/api/ |
D | kotlinx-serialization-core.klib.api | 466 …open fun decodeValue(): kotlin/Any // kotlinx.serialization.encoding/AbstractDecoder.decodeValue|d…
|
D | kotlinx-serialization-core.api | 386 public fun decodeValue ()Ljava/lang/Object;
|