Home
last modified time | relevance | path

Searched refs:decodeValue (Results 1 – 13 of 13) sorted by relevance

/external/kotlinx.serialization/core/commonMain/src/kotlinx/serialization/encoding/
DAbstractDecoder.kt22 …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/
DPlainDSAEncoding.java31 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
DStandardDSAEncoding.java32 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/
DPlainDSAEncoding.java35 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
DStandardDSAEncoding.java36 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/
DPlainDSAEncoding.java35 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
DStandardDSAEncoding.java36 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/
Dexample-formats-12.kt36 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats12.ListDecoder
Dexample-formats-13.kt36 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats13.ListDecoder
Dexample-formats-15.kt44 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats15.ListDecoder
Dexample-formats-14.kt41 override fun decodeValue(): Any = list.removeFirst() in encodeToList() method in example.exampleFormats14.ListDecoder
/external/kotlinx.serialization/core/api/
Dkotlinx-serialization-core.klib.api466 …open fun decodeValue(): kotlin/Any // kotlinx.serialization.encoding/AbstractDecoder.decodeValue|d…
Dkotlinx-serialization-core.api386 public fun decodeValue ()Ljava/lang/Object;