Home
last modified time | relevance | path

Searched refs:encodedLength (Results 1 – 25 of 47) sorted by relevance

12

/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
DUtf8Test.java33 assertEquals(0, Utf8.encodedLength("")); in testEncodedLength_validStrings()
34 assertEquals(11, Utf8.encodedLength("Hello world")); in testEncodedLength_validStrings()
35 assertEquals(8, Utf8.encodedLength("Résumé")); in testEncodedLength_validStrings()
36 assertEquals(461, Utf8.encodedLength("威廉·莎士比亞(William Shakespeare," in testEncodedLength_validStrings()
43 assertEquals(4, Utf8.encodedLength( in testEncodedLength_validStrings()
61 Utf8.encodedLength(invalidString); in testEncodedLengthFails()
/external/guava/guava-tests/test/com/google/common/base/
DUtf8Test.java39 assertEquals(0, Utf8.encodedLength("")); in testEncodedLength_validStrings()
40 assertEquals(11, Utf8.encodedLength("Hello world")); in testEncodedLength_validStrings()
41 assertEquals(8, Utf8.encodedLength("Résumé")); in testEncodedLength_validStrings()
42 assertEquals(461, Utf8.encodedLength("威廉·莎士比亞(William Shakespeare," in testEncodedLength_validStrings()
49 assertEquals(4, Utf8.encodedLength( in testEncodedLength_validStrings()
75 if (utf8Length != Utf8.encodedLength(sb)) { in testEncodedLength_validStrings2()
80 assertEquals(repro.toString(), utf8Length, Utf8.encodedLength(sb)); in testEncodedLength_validStrings2()
100 Utf8.encodedLength(invalidString); in testEncodedLengthFails()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DDexDataWriter.java223 int encodedLength = 4-firstElement; in writeRightZeroExtendedInt() local
224 writeEncodedValueHeader(valueType, encodedLength - 1); in writeRightZeroExtendedInt()
225 write(tempBuf, firstElement, encodedLength); in writeRightZeroExtendedInt()
240 int encodedLength = 8-firstElement; in writeRightZeroExtendedLong() local
241 writeEncodedValueHeader(valueType, encodedLength - 1); in writeRightZeroExtendedLong()
242 write(tempBuf, firstElement, encodedLength); in writeRightZeroExtendedLong()
/external/icu/icu4c/source/test/perf/utfperf/
Dutfperf.cpp38 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints; variable
181 encodedLength=outputLength=0; in call()
188 encodedLength+=(int32_t)(pInter-intermediate); in call()
242 encodedLength=0; in call()
247 encodedLength+=(int32_t)(pInter-intermediate); in call()
300 encodedLength=0; in call()
309 encodedLength+=(int32_t)(pInter-intermediate); in call()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DDLTaggedObject.java49 int encodedLength() in encodedLength() method in DLTaggedObject
54 int length = obj.toASN1Primitive().toDLObject().encodedLength(); in encodedLength()
85 out.writeLength(primitive.encodedLength()); in encode()
DDERTaggedObject.java54 int encodedLength() in encodedLength() method in DERTaggedObject
60 int length = primitive.encodedLength(); in encodedLength()
91 out.writeLength(primitive.encodedLength()); in encode()
DBERSet.java43 int encodedLength() in encodedLength() method in BERSet
49 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength(); in encodedLength()
DBERSequence.java43 int encodedLength() in encodedLength() method in BERSequence
49 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength(); in encodedLength()
DDERSequence.java56 length += ((ASN1Encodable)obj).toASN1Primitive().toDERObject().encodedLength(); in getBodyLength()
65 int encodedLength() in encodedLength() method in DERSequence
DDLSequence.java59 length += ((ASN1Encodable)obj).toASN1Primitive().toDLObject().encodedLength(); in getBodyLength()
68 int encodedLength() in encodedLength() method in DLSequence
DDLSet.java104 length += ((ASN1Encodable)obj).toASN1Primitive().toDLObject().encodedLength(); in getBodyLength()
113 int encodedLength() in encodedLength() method in DLSet
DDERSet.java66 length += ((ASN1Encodable)obj).toASN1Primitive().toDERObject().encodedLength(); in getBodyLength()
75 int encodedLength() in encodedLength() method in DERSet
DLazyEncodedSequence.java83 int encodedLength() in encodedLength() method in LazyEncodedSequence
92 return super.toDLObject().encodedLength(); in encodedLength()
DBERTaggedObject.java69 int encodedLength() in encodedLength() method in BERTaggedObject
75 int length = primitive.encodedLength(); in encodedLength()
DBEROctetString.java123 int encodedLength() in encodedLength() method
129 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength(); in encodedLength()
DDERNull.java29 int encodedLength() in encodedLength() method in DERNull
DDEROctetString.java29 int encodedLength() in encodedLength() method in DEROctetString
DASN1Primitive.java77 abstract int encodedLength() throws IOException; in encodedLength() method in ASN1Primitive
DDERUTF8String.java124 int encodedLength() in encodedLength() method in DERUTF8String
DDERT61String.java115 int encodedLength() in encodedLength() method in DERT61String
DDERVisibleString.java114 int encodedLength() in encodedLength() method in DERVisibleString
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DDexWriterUleb128Test.java229 …private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOExcept… in performTest() argument
237 Assert.assertEquals(startPosition + encodedLength, writer.getPosition()); in performTest()
238 for (int i=0; i<encodedLength; i++) { in performTest()
DDexWriterSleb128Test.java232 …private void performTest(int integerValue, byte[] encodedValue, int encodedLength) throws IOExcept… in performTest() argument
240 Assert.assertEquals(startPosition + encodedLength, writer.getPosition()); in performTest()
241 for (int i=0; i<encodedLength; i++) { in performTest()
/external/guava/guava-tests/benchmark/com/google/common/base/
DUtf8Benchmark.java144 if (Utf8.encodedLength(string) == 1237482374) { in lengthOfString()
160 if (Utf8.encodedLength(seq) == 1237482374) { in lengthOfStringBuilder()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
DHuffmanTest.java50 assertEquals(baos.size(), Huffman.get().encodedLength(buf)); in assertRoundTrip()

12