| /external/webkit/Source/WebCore/platform/image-decoders/webp/ |
| WEBPImageDecoder.cpp | 34 #include "webp/decode.h" 53 decode(true); 70 decode(false); 75 bool WEBPImageDecoder::decode(bool onlySize) function in class:WebCore::WEBPImageDecoder
|
| /libcore/luni/src/main/java/libcore/io/ |
| Base64.java | 35 public static byte[] decode(byte[] in) { method in class:Base64 36 return decode(in, in.length); 39 public static byte[] decode(byte[] in, int len) { method in class:Base64
|
| /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
| LongTest.java | 67 * @tests java.lang.Long#decode(java.lang.String) 71 // java.lang.Long.decode(java.lang.String) 72 assertEquals("Returned incorrect value for hex string", 255L, Long.decode( 74 assertEquals("Returned incorrect value for dec string", -89000L, Long.decode( 76 assertEquals("Returned incorrect value for 0 decimal", 0, Long.decode("0") 78 assertEquals("Returned incorrect value for 0 hex", 0, Long.decode("0x0") 82 Long.decode("-9223372036854775808").longValue() == 0x8000000000000000L); 85 Long.decode("-0x8000000000000000").longValue() == 0x8000000000000000L); 88 Long.decode("9223372036854775807").longValue() == 0x7fffffffffffffffL); 91 Long.decode("0x7fffffffffffffff").longValue() == 0x7fffffffffffffffL) [all...] |
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
| AnyTest.java | 47 .decode(in)));
|
| GeneralizedTimeTest.java | 111 gtime.decode(in)); //decoded 120 gtime.decode(in)); //decoded 139 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date)))) 147 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
|
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/ |
| AuthenticatedAttributesTest.java | 42 ContentInfo token = (ContentInfo) ContentInfo.ASN1.decode(in);
|
| SignerInfoTest.java | 47 signerInfo = (SignerInfo) SignerInfo.ASN1.decode(encoding);
|
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
| CertificatePoliciesTest.java | 58 CertificatePolicies.ASN1.decode(encoding))
|
| CertificateTest.java | 158 Extensions.ASN1.decode(encoding); 165 TBSCertificate.ASN1.decode(encoding); 171 Certificate.ASN1.decode(encoding); 202 NameConstraints.ASN1.decode(encoding);
|
| GeneralNamesTest.java | 50 GeneralNames gnames = (GeneralNames) GeneralNames.ASN1.decode(encoding);
|
| /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
| CertificateStub.java | 52 * @see java.security.Certificate#decode(java.io.InputStream) 54 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
|
| /external/apache-http/src/org/apache/http/client/utils/ |
| URLEncodedUtils.java | 141 final String name = decode(nameValue[0], encoding); 144 value = decode(nameValue[1], encoding); 173 private static String decode (final String content, final String encoding) { method in class:URLEncodedUtils 175 return URLDecoder.decode(content,
|
| /external/nist-sip/java/gov/nist/javax/sip/address/ |
| RFC2396UrlDecoder.java | 39 * Decode a path. 44 * <p>This method differs from URLDecoder.decode in that it always uses UTF-8 48 * @param uri the path to decode 51 public static String decode(String uri) { method in class:RFC2396UrlDecoder
|
| /external/v8/src/ |
| safepoint-table.h | 61 return DeoptimizationIndexField::decode(info_); 66 return GapCodeSizeField::decode(info_); 71 return ArgumentsField::decode(info_); 76 return SaveDoublesField::decode(info_);
|
| /external/webkit/Source/WebCore/platform/image-decoders/gif/ |
| GIFImageDecoder.h | 68 // is no more data coming, sets the "decode failure" flag. 69 void decode(unsigned haltAtFrame, GIFQuery);
|
| /external/webkit/Source/WebCore/platform/text/ |
| TextCodecICU.h | 49 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
|
| /external/webkit/Source/WebKit2/Platform/CoreIPC/ |
| Attachment.cpp | 67 bool Attachment::decode(ArgumentDecoder* decoder, Attachment& attachment) function in class:CoreIPC::Attachment
|
| /external/webkit/Source/WebKit2/Platform/gtk/ |
| SharedMemoryGtk.cpp | 49 bool SharedMemory::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle) function in class:WebKit::SharedMemory::Handle
|
| /external/webkit/Source/WebKit2/Shared/ |
| WebCoreArgumentCoders.cpp | 51 if (!decoder->decode(handle))
|
| WebGeolocationPosition.h | 42 static bool decode(CoreIPC::ArgumentDecoder*, Data&);
|
| WebPageCreationParameters.h | 45 static bool decode(CoreIPC::ArgumentDecoder*, WebPageCreationParameters&);
|
| /external/webkit/Source/WebKit2/Shared/mac/ |
| ShareableSurface.h | 55 static bool decode(CoreIPC::ArgumentDecoder*, Handle&);
|
| /external/webkit/Source/WebKit2/WebProcess/WebPage/ |
| DecoderAdapter.cpp | 80 return m_decoder.decode(value);
|
| /frameworks/base/voip/jni/rtp/ |
| AmrCodec.cpp | 55 int decode(int16_t *samples, int count, void *payload, int length); 131 int AmrCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon15726::AmrCodec 216 int decode(int16_t *samples, int count, void *payload, int length); 242 int GsmEfrCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon15726::GsmEfrCodec
|
| /libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
| ASN1Any.java | 72 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Any
|