Home
last modified time | relevance | path

Searched refs:encodeValue (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/aosp_15_r20/external/kotlinx.serialization/core/commonMain/src/kotlinx/serialization/encoding/
H A DAbstractEncoder.kt36 public open fun encodeValue(value: Any): Unit = in encodeElement() method in kotlinx.serialization.encoding.AbstractEncoder
43 override fun encodeBoolean(value: Boolean): Unit = encodeValue(value) in encodeBoolean()
44 override fun encodeByte(value: Byte): Unit = encodeValue(value) in encodeBoolean()
45 override fun encodeShort(value: Short): Unit = encodeValue(value) in encodeBoolean()
46 override fun encodeInt(value: Int): Unit = encodeValue(value) in encodeBoolean()
47 override fun encodeLong(value: Long): Unit = encodeValue(value) in encodeBoolean()
48 override fun encodeFloat(value: Float): Unit = encodeValue(value) in encodeBoolean()
49 override fun encodeDouble(value: Double): Unit = encodeValue(value) in encodeBoolean()
50 override fun encodeChar(value: Char): Unit = encodeValue(value) in encodeBoolean()
51 override fun encodeString(value: String): Unit = encodeValue(value) in encodeBoolean()
[all …]
/aosp_15_r20/external/kotlinx.serialization/formats/json/jsMain/src/kotlinx/serialization/json/internal/
H A DDynamicEncoders.kt90 override fun encodeValue(value: Any) { in encodeValue() method in kotlinx.serialization.json.internal.DynamicObjectEncoder
101 encodeValue(value.toString()) in encodeChar()
115 encodeValue(enumDescriptor.getElementName(index)) in encodeEnum()
135 encodeValue(asDouble) in encodeLong()
151 encodeValue(value) in encodeDouble()
263 encodeValue(asDouble) in encodeLong()
267 encodeValue(value.toString()) in encodeChar()
270 override fun encodeValue(value: Any) { in encodeValue() method in kotlinx.serialization.json.internal.DynamicPrimitiveEncoder
276 encodeValue(enumDescriptor.getElementName(index)) in encodeEnum()
/aosp_15_r20/external/aws-eventstream-java/src/main/java/software/amazon/eventstream/
H A DHeaderValue.java134 encodeValue(dos); in encode()
137 abstract void encodeValue(DataOutputStream dos) throws IOException; in encodeValue() method in HeaderValue
189 void encodeValue(DataOutputStream dos) {} in encodeValue() method in HeaderValue.BooleanValue
234 void encodeValue(DataOutputStream dos) {} in encodeValue() method in HeaderValue.ByteValue
275 void encodeValue(DataOutputStream dos) {} in encodeValue() method in HeaderValue.ShortValue
316 void encodeValue(DataOutputStream dos) throws IOException { in encodeValue() method in HeaderValue.IntegerValue
359 void encodeValue(DataOutputStream dos) throws IOException { in encodeValue() method in HeaderValue.LongValue
402 void encodeValue(DataOutputStream dos) throws IOException { in encodeValue() method in HeaderValue.ByteArrayValue
445 void encodeValue(DataOutputStream dos) throws IOException { in encodeValue() method in HeaderValue.StringValue
493 void encodeValue(DataOutputStream dos) throws IOException { in encodeValue() method in HeaderValue.TimestampValue
[all …]
/aosp_15_r20/external/python/pyasn1/pyasn1/codec/ber/
Dencoder.py73 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in AbstractItemEncoder
85 substrate, isConstructed, isOctets = self.encodeValue(
101 substrate, isConstructed, isOctets = self.encodeValue(
156 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in EndOfOctetsEncoder
163 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in BooleanEncoder
171 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in IntegerEncoder
188 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in BitStringEncoder
230 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in OctetStringEncoder
292 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in NullEncoder
299 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in ObjectIdentifierEncoder
[all …]
/aosp_15_r20/external/python/pyasn1/pyasn1/codec/cer/
Dencoder.py17 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in BooleanEncoder
44 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in TimeEncoderMixIn
97 return encoder.OctetStringEncoder.encodeValue(
113 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in SetOfEncoder
132 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in SequenceOfEncoder
163 def encodeValue(self, value, asn1Spec, encodeFun, **options): member in SetEncoder
/aosp_15_r20/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DPlainDSAEncoding.java17 encodeValue(n, r, result, 0, valueLength); in encode()
18 encodeValue(n, s, result, valueLength, valueLength); in encode()
52 private void encodeValue(BigInteger n, BigInteger x, byte[] buf, int off, int len) in encodeValue() method in PlainDSAEncoding
H A DStandardDSAEncoding.java22 encodeValue(n, v, r); in encode()
23 encodeValue(n, v, s); in encode()
60 protected void encodeValue(BigInteger n, ASN1EncodableVector v, BigInteger x) in encodeValue() method in StandardDSAEncoding
/aosp_15_r20/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/signers/
H A DPlainDSAEncoding.java21 encodeValue(n, r, result, 0, valueLength); in encode()
22 encodeValue(n, s, result, valueLength, valueLength); in encode()
56 private void encodeValue(BigInteger n, BigInteger x, byte[] buf, int off, int len) in encodeValue() method in PlainDSAEncoding
H A DStandardDSAEncoding.java26 encodeValue(n, v, r); in encode()
27 encodeValue(n, v, s); in encode()
64 protected void encodeValue(BigInteger n, ASN1EncodableVector v, BigInteger x) in encodeValue() method in StandardDSAEncoding
/aosp_15_r20/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/signers/
H A DPlainDSAEncoding.java21 encodeValue(n, r, result, 0, valueLength); in encode()
22 encodeValue(n, s, result, valueLength, valueLength); in encode()
56 private void encodeValue(BigInteger n, BigInteger x, byte[] buf, int off, int len) in encodeValue() method in PlainDSAEncoding
H A DStandardDSAEncoding.java26 encodeValue(n, v, r); in encode()
27 encodeValue(n, v, s); in encode()
64 protected void encodeValue(BigInteger n, ASN1EncodableVector v, BigInteger x) in encodeValue() method in StandardDSAEncoding
/aosp_15_r20/external/kotlinx.serialization/guide/example/
H A Dexample-formats-14.kt14 override fun encodeValue(value: Any) { in encodeValue() method in example.exampleFormats14.ListEncoder
23 override fun encodeNull() = encodeValue("NULL") in encodeNull()
24 override fun encodeNotNullMark() = encodeValue("!!") in encodeNull()
H A Dexample-formats-10.kt14 override fun encodeValue(value: Any) { in encodeValue() method in example.exampleFormats10.ListEncoder
H A Dexample-formats-11.kt14 override fun encodeValue(value: Any) { in encodeValue() method in example.exampleFormats11.ListEncoder
H A Dexample-formats-12.kt14 override fun encodeValue(value: Any) { in encodeValue() method in example.exampleFormats12.ListEncoder
H A Dexample-formats-13.kt14 override fun encodeValue(value: Any) { in encodeValue() method in example.exampleFormats13.ListEncoder
/aosp_15_r20/system/libcppbor/include/cppbor/
H A Dcppbor.h451 encodeValue(encodeCallback); in encode()
463 void encodeValue(EncodeCallback encodeCallback) const;
504 encodeValue(encodeCallback); in encode()
512 void encodeValue(EncodeCallback encodeCallback) const;
558 encodeValue(encodeCallback); in encode()
570 void encodeValue(EncodeCallback encodeCallback) const;
606 encodeValue(encodeCallback); in encode()
614 void encodeValue(EncodeCallback encodeCallback) const;
/aosp_15_r20/system/libcppbor/src/
H A Dcppbor.cpp419 void Bstr::encodeValue(EncodeCallback encodeCallback) const { in encodeValue() function in cppbor::Bstr
431 void ViewBstr::encodeValue(EncodeCallback encodeCallback) const { in encodeValue() function in cppbor::ViewBstr
443 void Tstr::encodeValue(EncodeCallback encodeCallback) const { in encodeValue() function in cppbor::Tstr
455 void ViewTstr::encodeValue(EncodeCallback encodeCallback) const { in encodeValue() function in cppbor::ViewTstr
/aosp_15_r20/external/python/pyasn1-modules/tools/
Docspclient.py37 def encodeValue(*args): member in ValueOnlyBitStringEncoder
38 substrate, isConstructed = encoder.encoder.BitStringEncoder.encodeValue(*args)
/aosp_15_r20/external/kotlinx.serialization/core/commonMain/src/kotlinx/serialization/internal/
H A DNoOpEncoder.kt19 public override fun encodeValue(value: Any): Unit = Unit method
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
Ddebug.go1439 start, startOK := encodeValue(state.ctxt, pending.startBlock, pending.startValue)
1440 end, endOK := encodeValue(state.ctxt, endBlock, endValue)
1550 func encodeValue(ctxt *obj.Link, b, v ID) (uint64, bool) { func
1622 start, startOK := encodeValue(ctxt, f.Entry.ID, st)
1623 end, endOK := encodeValue(ctxt, f.Entry.ID, en)
/aosp_15_r20/external/kotlinx.serialization/core/commonTest/src/kotlinx/serialization/
H A DBasicTypesSerializationTest.kt48 override fun encodeValue(value: Any) { in encodeValue() method in kotlinx.serialization.BasicTypesSerializationTest.KeyValueOutput
/aosp_15_r20/external/kotlinx.serialization/integration-test/src/commonTest/kotlin/sample/
H A DBasicTypesSerializationTest.kt149 override fun encodeValue(value: Any) { in encodeValue() method in sample.BasicTypesSerializationTest.KeyValueOutput
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.serialization/kotlinx_serialization_core/android_common_apex35/kotlin_headers/
Dkotlinx_serialization_core.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.serialization__android_common_apex35__kotlinx_serialization_core. ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.serialization/kotlinx_serialization_core/android_common_apex30/kotlin_headers/
Dkotlinx_serialization_core.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.serialization__android_common_apex30__kotlinx_serialization_core. ...

12345678910>>...14