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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
WriterTesterTest.java 157 @Override public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.BufferedWriterCharSinkTester
167 @Override public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.FilterWriterCharSinkTester
177 @Override public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.PrintWriterCharSinkTester
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ImplicitTest.java 169 ((ASN1Type) taggedType[i][2]).decode(in));
212 // decode primitive
214 .decode(primitiveEncoding)));
219 // decode constructed
221 type2.decode(constructedEncoding);
IntegerTest.java 91 // decode from byte array
96 (byte[]) asn1.decode(in))); // returned
99 // decode from input stream
105 (byte[]) asn1.decode(in))); //returned
134 ASN1Integer.getInstance().decode(in);
OidTest.java 127 int[] decoded = (int[]) asn1.decode(new DerInputStream(
130 assertTrue("Failed to decode oid: " + oid[i][0], // error message
162 ASN1Oid.getInstance().decode(in);
176 assertEquals("Failed to decode oid: " + oid[i][0], // error message
178 asn1.decode(new DerInputStream((byte[]) oid[i][2])));
DerUTCTimeEDTest.java 105 assertEquals(187, (myDate.getTime()-((Date)uTime.decode(dis)).getTime()));
115 assertEquals(myDate, uTime.decode(dis));
SequenceOfTest.java 85 .decode(in));
118 seqVerify.decode(in);
UTCTimeTest.java 102 utime.decode(in)); //decoded
111 utime.decode(in)); //decoded
  /external/skia/include/images/
SkImageDecoder.h 79 /** Returns true if the decoder should try to decode the
85 /** Set to true if the the decoder should try to decode the
173 cancel. This will result in decode() returning false. However, there is
176 and decode() will return true (assuming no other problems were
179 This state is automatically reset at the beginning of decode().
187 /** Passed to the decode method. If kDecodeBounds_Mode is passed, then
196 /** Given a stream, decode it into the specified bitmap.
209 bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode, bool reuseBitmap = false);
210 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode, bool reuseBitmap = false) { function in class:SkImageDecoder
211 return this->decode(stream, bitmap, SkBitmap::kNo_Config, mode, reuseBitmap)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
DSAPrivateKeyImpl.java 113 .decode(encoding);
115 throw new InvalidKeySpecException("Failed to decode keySpec encoding: " + e);
119 x = new BigInteger((byte[]) ASN1Integer.getInstance().decode(
122 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
128 .decode(ai.getParameters());
130 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
DSAPublicKeyImpl.java 115 .decode(encoding);
117 throw new InvalidKeySpecException("Failed to decode keySpec encoding: " + e);
121 y = new BigInteger((byte[]) ASN1Integer.getInstance().decode(
124 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
131 .decode(ai.getParameters());
133 throw new InvalidKeySpecException("Failed to decode parameters: " + e);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x501/
NameTest.java 69 Name principal = (Name) Name.ASN1.decode(mess);
81 Name principal = (Name) Name.ASN1.decode(is);
  /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
DigitalSignatureTest.java 81 .decode(b64PrivateKeySpec)));
84 .decode(b64PublicKeySpec)));
  /external/bouncycastle/src/main/java/org/bouncycastle/util/encoders/
HexEncoder.java 70 * decode the Hex encoded byte data writing it to the given output stream,
75 public int decode( method in class:HexEncoder
123 * decode the Hex encoded String data writing it to the given output stream,
128 public int decode( method in class:HexEncoder
  /external/jpeg/
Android.mk 30 # enable tile based decode
  /external/v8/src/mips/
code-stubs-mips.h 85 : op_(OpBits::decode(key)),
86 mode_(ModeBits::decode(key)),
87 lhs_(LhsRegister(RegisterBits::decode(key))),
88 rhs_(RhsRegister(RegisterBits::decode(key))),
89 constant_rhs_(KnownBitsForMinorKey(KnownIntBits::decode(key))),
236 : op_(OpBits::decode(key)),
237 mode_(ModeBits::decode(key)),
238 use_fpu_(FPUBits::decode(key)),
  /external/webkit/Source/WebKit2/Shared/win/
PlatformCertificateInfo.cpp 123 bool PlatformCertificateInfo::decode(CoreIPC::ArgumentDecoder* decoder, PlatformCertificateInfo& c) function in class:WebKit::PlatformCertificateInfo
126 if (!decoder->decode(length))
  /external/webkit/Source/WebKit2/UIProcess/
ChunkedUpdateDrawingAreaProxy.cpp 156 if (!arguments->decode(updateChunk))
164 if (!arguments->decode(CoreIPC::Out(updateChunk)))
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
ChunkedUpdateDrawingArea.cpp 179 if (!arguments->decode(CoreIPC::Out(size)))
192 if (!arguments->decode(CoreIPC::Out(forceRepaint)))
  /frameworks/base/core/java/android/net/
MailTo.java 58 * Parse and decode a mailto scheme string. This parser implements
87 m.mHeaders.put(Uri.decode(nameval[0]).toLowerCase(),
88 nameval.length > 1 ? Uri.decode(nameval[1]) : null);
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
ComprehensionTlv.java 41 * {@link #decode(byte[], int) decode} method.
91 ComprehensionTlv ctlv = ComprehensionTlv.decode(data, startIndex);
113 public static ComprehensionTlv decode(byte[] data, int startIndex) method in class:ComprehensionTlv
  /libcore/luni/src/main/java/java/lang/
Byte.java 134 public static Byte decode(String string) throws NumberFormatException { method in class:Byte
135 int intValue = Integer.decode(string);
Short.java 134 public static Short decode(String string) throws NumberFormatException { method in class:Short
135 int intValue = Integer.decode(string).intValue();
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Choice.java 117 * If it is a matter what time format should be used to decode/encode
300 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Choice
303 throw new ASN1Exception("Failed to decode ASN.1 choice type. No alternatives were found for " + getClass().getName());// FIXME message
308 in.content = type[index].decode(in);
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AuthorityKeyIdentifier.java 67 public static AuthorityKeyIdentifier decode(byte[] encoding) throws IOException { method in class:AuthorityKeyIdentifier
68 AuthorityKeyIdentifier aki = (AuthorityKeyIdentifier) ASN1.decode(encoding);
Extension.java 245 extnValueObject = SubjectKeyIdentifier.decode(extnValue);
257 extnValueObject = NameConstraints.decode(extnValue);
259 extnValueObject = CertificatePolicies.decode(extnValue);
261 extnValueObject = AuthorityKeyIdentifier.decode(extnValue);
271 extnValueObject = CRLDistributionPoints.decode(extnValue);
281 extnValueObject = IssuingDistributionPoint.decode(extnValue);
283 extnValueObject = InfoAccessSyntax.decode(extnValue);
285 extnValueObject = InfoAccessSyntax.decode(extnValue);
378 // decode Key Usage and Basic Constraints extension values

Completed in 744 milliseconds

1 2 3 4 5 6 7 8 91011>>