HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 201 - 225 of 616) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Enumerated.java 63 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Enumerated
ASN1OctetString.java 61 @Override public Object decode(BerInputStream in) throws IOException { method in class:ASN1OctetString
ASN1UTCTime.java 76 @Override public Object decode(BerInputStream in) throws IOException { method in class:ASN1UTCTime
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AlternativeName.java 49 this.alternativeNames = (GeneralNames) GeneralNames.ASN1.decode(encoding);
CRLNumber.java 45 number = new BigInteger((byte[]) ASN1.decode(encoding));
InvalidityDate.java 43 date = (Date) ASN1.decode(encoding);
KeyUsage.java 69 this.keyUsage = (boolean[]) ASN1.decode(encoding);
CertificatePolicies.java 56 public static CertificatePolicies decode(byte[] encoding) throws IOException { method in class:CertificatePolicies
57 CertificatePolicies cps = ((CertificatePolicies) ASN1.decode(encoding));
InfoAccessSyntax.java 68 public static InfoAccessSyntax decode(byte[] encoding) throws IOException { method in class:InfoAccessSyntax
69 return ((InfoAccessSyntax) ASN1.decode(encoding));
  /libcore/luni/src/test/java/libcore/io/
Base64Test.java 26 assertEquals("[]", Arrays.toString(Base64.decode(new byte[0])));
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_MultiByte_EUC_JP.java     [all...]
OldCharset_MultiByte_EUC_JP_Android.java     [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
CertificateStub.java 53 * @see java.security.Certificate#decode(java.io.InputStream)
55 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
  /packages/apps/Browser/src/com/android/browser/
DataUri.java 49 mData = Base64.decode(mData);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
UriSource.java 44 String decoded = URLDecoder.decode(segment[1]);
  /system/core/libsysutils/src/
NetlinkListener.cpp 56 if (!evt->decode(mBuffer, count, mFormat)) {
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16CharsetEncoderTest.java 132 assertEquals(decoder.decode(out), decoder.decode(ByteBuffer
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 130 public byte[] decode(byte[] array) throws DecoderException { method in class:Hex
148 public Object decode(Object object) throws DecoderException { method in class:Hex
  /external/webkit/Source/WebCore/loader/cache/
CachedCSSStyleSheet.cpp 86 String sheetText = m_decoder->decode(m_data->data(), m_data->size());
98 // Decode the data to find out the encoding and keep the sheet text around during checkNotify()
100 m_decodedSheetText = m_decoder->decode(m_data->data(), m_data->size());
  /frameworks/base/media/tests/omxjpegdecoder/
jpeg_decoder_bench.cpp 58 // Decode the input stream and then use the bitmap.
59 if (!decoder->decode(stream, bitmap, prefConfig, decodeMode)) {
60 return nullObjectReturn("decoder->decode returned false");
75 // Decode the input stream and then use the bitmap.
76 if (!decoder->decode(stream, bitmap, prefConfig, decodeMode)) {
77 return nullObjectReturn("decoder->decode returned false");
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
factor.sed 64 :decode
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Arguments.h 42 static bool decode(ArgumentDecoder*, Arguments0&) function in struct:CoreIPC::Arguments0
75 static bool decode(ArgumentDecoder* decoder, Arguments1& result) function in struct:CoreIPC::Arguments1
77 return decoder->decode(result.argument1);
113 static bool decode(ArgumentDecoder* decoder, Arguments2& result) function in struct:CoreIPC::Arguments2
115 if (!Arguments1<T1>::decode(decoder, result))
118 return decoder->decode(result.argument2);
155 static bool decode(ArgumentDecoder* decoder, Arguments3& result) function in struct:CoreIPC::Arguments3
157 if (!Arguments2<T1, T2>::decode(decoder, result))
160 return decoder->decode(result.argument3);
198 static bool decode(ArgumentDecoder* decoder, Arguments4& result function in struct:CoreIPC::Arguments4
242 static bool decode(ArgumentDecoder* decoder, Arguments5& result) function in struct:CoreIPC::Arguments5
287 static bool decode(ArgumentDecoder* decoder, Arguments6& result) function in struct:CoreIPC::Arguments6
333 static bool decode(ArgumentDecoder* decoder, Arguments7& result) function in struct:CoreIPC::Arguments7
378 static bool decode(ArgumentDecoder* decoder, Arguments8& result) function in struct:CoreIPC::Arguments8
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BitStringTest.java 62 // decode from byte array
68 BitString decoded = (BitString) asn1.decode(in);
77 // decode from input stream
83 BitString decoded = (BitString) asn1.decode(in);
119 ASN1BitString.getInstance().decode(in);
164 .decode(in)));
206 .decode(in)));
ChoiceTest.java 107 assertEquals("Test case: " + i, testcases[i][0], choice.decode(in));
156 List values = (List) sequenceOf.decode(encoded);
188 assertEquals("False: ", Boolean.FALSE, explicit.decode(encoded));
192 assertEquals("True: ", Boolean.TRUE, explicit.decode(encoded));
244 Boolean b = (Boolean) choice2.decode(new byte[] { 0x01, 0x01, 0x00 });
  /external/chromium/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 50 rem vcdiff with three arguments but without "encode" or "decode"
65 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
68 || ( echo Decode with three arguments failed ^
87 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
90 || ( echo Decode using stdin/stdout failed ^
107 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
110 || ( echo Decode with mixed arguments failed ^
126 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
129 || ( echo Decode with mixed arguments failed ^
142 %VCDIFF% decode -dictionary %TARGET_FILE%
    [all...]

Completed in 1049 milliseconds

1 2 3 4 5 6 7 891011>>