/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
H A D | DERNull.java | 29 int encodedLength() method in class:DERNull
|
H A D | BERSequence.java | 43 int encodedLength() method in class:BERSequence 49 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
|
H A D | BERSet.java | 43 int encodedLength() method in class:BERSet 49 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
|
H A D | DERTaggedObject.java | 54 int encodedLength() method in class:DERTaggedObject 60 int length = primitive.encodedLength(); 91 out.writeLength(primitive.encodedLength());
|
H A D | DLTaggedObject.java | 49 int encodedLength() method in class:DLTaggedObject 54 int length = obj.toASN1Primitive().toDLObject().encodedLength(); 85 out.writeLength(primitive.encodedLength());
|
H A D | ASN1Primitive.java | 77 abstract int encodedLength() throws IOException; method in class:ASN1Primitive
|
H A D | DEROctetString.java | 29 int encodedLength() method in class:DEROctetString
|
H A D | DERSequence.java | 56 length += ((ASN1Encodable)obj).toASN1Primitive().toDERObject().encodedLength(); 65 int encodedLength() method in class:DERSequence
|
H A D | DERSet.java | 66 length += ((ASN1Encodable)obj).toASN1Primitive().toDERObject().encodedLength(); 75 int encodedLength() method in class:DERSet
|
H A D | DLSequence.java | 59 length += ((ASN1Encodable)obj).toASN1Primitive().toDLObject().encodedLength(); 68 int encodedLength() method in class:DLSequence
|
H A D | DLSet.java | 104 length += ((ASN1Encodable)obj).toASN1Primitive().toDLObject().encodedLength(); 113 int encodedLength() method in class:DLSet
|
H A D | LazyEncodedSequence.java | 83 int encodedLength() method in class:LazyEncodedSequence 92 return super.toDLObject().encodedLength();
|
H A D | BERTaggedObject.java | 69 int encodedLength() method in class:BERTaggedObject 75 int length = primitive.encodedLength();
|
H A D | BEROctetString.java | 123 int encodedLength() method in class:BEROctetString 129 length += ((ASN1Encodable)e.nextElement()).toASN1Primitive().encodedLength();
|
H A D | DERGeneralString.java | 84 int encodedLength() method in class:DERGeneralString
|
H A D | DERT61String.java | 115 int encodedLength() method in class:DERT61String
|
H A D | DERUTF8String.java | 124 int encodedLength() method in class:DERUTF8String
|
H A D | DERVisibleString.java | 114 int encodedLength() method in class:DERVisibleString
|
H A D | ASN1Boolean.java | 167 int encodedLength() method in class:ASN1Boolean
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
H A D | Utf8Test.java | 33 assertEquals(0, Utf8.encodedLength("")); 34 assertEquals(11, Utf8.encodedLength("Hello world")); 35 assertEquals(8, Utf8.encodedLength("Résumé")); 36 assertEquals(461, Utf8.encodedLength("威廉·莎士比亞(William Shakespeare," 43 assertEquals(4, Utf8.encodedLength( 61 Utf8.encodedLength(invalidString);
|
/external/guava/guava-tests/test/com/google/common/base/ |
H A D | Utf8Test.java | 39 assertEquals(0, Utf8.encodedLength("")); 40 assertEquals(11, Utf8.encodedLength("Hello world")); 41 assertEquals(8, Utf8.encodedLength("Résumé")); 42 assertEquals(461, Utf8.encodedLength("威廉·莎士比亞(William Shakespeare," 49 assertEquals(4, Utf8.encodedLength( 75 if (utf8Length != Utf8.encodedLength(sb)) { 80 assertEquals(repro.toString(), utf8Length, Utf8.encodedLength(sb)); 100 Utf8.encodedLength(invalidString);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
H A D | DexDataWriter.java | 223 int encodedLength = 4-firstElement; 224 writeEncodedValueHeader(valueType, encodedLength - 1); 225 write(tempBuf, firstElement, encodedLength); 240 int encodedLength = 8-firstElement; 241 writeEncodedValueHeader(valueType, encodedLength - 1); 242 write(tempBuf, firstElement, encodedLength);
|
/external/icu/icu4c/source/test/perf/utfperf/ |
H A D | utfperf.cpp | 38 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints; variable 181 encodedLength=outputLength=0; 188 encodedLength+=(int32_t)(pInter-intermediate); 242 encodedLength=0; 247 encodedLength+=(int32_t)(pInter-intermediate); 300 encodedLength=0; 309 encodedLength+=(int32_t)(pInter-intermediate);
|
/external/guava/guava-tests/benchmark/com/google/common/base/ |
H A D | Utf8Benchmark.java | 144 if (Utf8.encodedLength(string) == 1237482374) { 160 if (Utf8.encodedLength(seq) == 1237482374) {
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/ |
H A D | HuffmanTest.java | 50 assertEquals(baos.size(), Huffman.get().encodedLength(buf));
|