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

<<11121314151617181920>>

  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
Makefile 40 COMPONENT_LIB=libOMX.TI.AAC.decode.so
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
Makefile 38 COMPONENT_LIB=libOMX.TI.MP3.decode.so
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
Makefile 43 COMPONENT_LIB=libOMX.TI.WMA.decode.so
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
Makefile 29 COMPONENT_LIB=libOMX.TI.JPEG.decode.so
  /libcore/luni/src/main/java/java/lang/
Integer.java 154 public static Integer decode(String string) throws NumberFormatException { method in class:Integer
237 return decode(prop);
266 return decode(prop);
295 return decode(prop);
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 35 * <li>invoking the {@link #decode(ByteBuffer, CharBuffer, boolean) decode}
39 * <li>invoking the {@link #decode(ByteBuffer, CharBuffer, boolean) decode}
46 * The {@link #decode(ByteBuffer, CharBuffer, boolean) decode} method will
158 * This method should not be invoked while another {@code decode} operation
182 * if another exception happened during the decode operation.
184 public final CharBuffer decode(ByteBuffer in) throws CharacterCodingException { method in class:CharsetDecoder
190 result = decode(in, output, false)
306 public final CoderResult decode(ByteBuffer in, CharBuffer out, method in class:CharsetDecoder
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 60 .decode(this.encoded);
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 18 public static native int decode(long converterHandle, byte[] input, int inEnd, method in class:NativeConverter
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1GeneralizedTime.java 64 public Object decode(BerInputStream in) throws IOException { method in class:ASN1GeneralizedTime
ASN1Integer.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Integer
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
CertificateIssuer.java 53 issuer = (X500Principal) ASN1.decode(getEncoded());
ExtendedKeyUsage.java 61 keys = (List<String>) ASN1.decode(getEncoded());
NameConstraints.java 94 public static NameConstraints decode(byte[] encoding) throws IOException { method in class:NameConstraints
95 return (NameConstraints) ASN1.decode(encoding);
144 return (byte[]) ASN1OctetString.getInstance().decode(bytes);
175 : ((GeneralNames) GeneralNames.ASN1.decode(bytes)).getNames();
ReasonCode.java 64 this.code = ((byte[]) ASN1.decode(encoding))[0];
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
QueryParameterUtils.java 71 return Uri.decode(value);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory_ImplTest.java 216 Base64.decode(b64PublicKeySpec.getBytes("UTF-8")));
262 Base64.decode(pkcs7so.getBytes("UTF-8")));
286 Base64.decode(pkcs7so.getBytes("UTF-8")));
291 bais = new ByteArrayInputStream(Base64.decode(pkcs7so.getBytes("UTF-8")));
402 data[asn_x509] = Base64.decode(x509crl.getBytes("UTF-8"));
404 data[asn_pkcs] = Base64.decode(pkcs7so.getBytes("UTF-8"));
501 data[asn_x509] = Base64.decode(x509cert.getBytes("UTF-8"));
503 data[asn_pkcs] = Base64.decode(pkcs7so.getBytes("UTF-8"));
734 Base64.decode(pkcs7so.getBytes("UTF-8")));
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 182 bool decode(const SharedBuffer& data, bool onlySize) function in class:WebCore::JPEGImageReader
395 // Our decode step always sets things up properly, so if this method is ever
420 decode(true);
446 decode(false);
525 void JPEGImageDecoder::decode(bool onlySize) function in class:WebCore::JPEGImageDecoder
533 // If we couldn't decode the image but we've received all the data, decoding
535 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 128 bool decode(const SharedBuffer& data, bool sizeOnly) function in class:WebCore::PNGImageReader
186 decode(true);
212 decode(false);
274 // the color profile or we'd need to decode into a gray-scale image buffer and
421 void PNGImageDecoder::decode(bool onlySize)
429 // If we couldn't decode the image but we've received all the data, decoding
431 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
  /frameworks/base/core/java/android/util/
Base64.java 76 * Encode/decode another block of input data. this.output is
103 * Decode the Base64-encoded data in input and return the data in
109 * @param str the input String to decode, which is converted to
112 * Pass {@code DEFAULT} to decode standard Base64.
117 public static byte[] decode(String str, int flags) { method in class:Base64
118 return decode(str.getBytes(), flags);
122 * Decode the Base64-encoded data in input and return the data in
128 * @param input the input array to decode
130 * Pass {@code DEFAULT} to decode standard Base64.
135 public static byte[] decode(byte[] input, int flags) method in class:Base64
155 public static byte[] decode(byte[] input, int offset, int len, int flags) { method in class:Base64
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_AbstractTest.java 123 static void decode (byte[] input, char[] expectedOutput) throws CharacterCodingException { method in class:OldCharset_AbstractTest
127 outputCB = decoder.decode(inputBB);
152 decode(testBytes, testChars); method
181 CharBuffer outputCB = decoder.decode(intermediateBB);
183 assertEqualCBs("decode(encode(A)) must be identical with A = " + code,
190 fail("failed to decode(encode(" + code + "))");
209 CharBuffer outputCB = decoder.decode(intermediateBB);
211 assertEqualCBs("decode(encode(A)) must be identical with A!",
  /external/webkit/Source/WebCore/storage/
IDBLevelDBBackingStore.cpp 58 // Each key type has a class (in square brackets below) which knows how to encode, decode, and compare that key type.
516 static const char* decode(const char* start, const char* limit, KeyPrefix* result) function in class:WebCore::__anon13441::KeyPrefix
646 static const char* decode(const char* start, const char* limit, DatabaseFreeListKey* result) function in class:WebCore::__anon13441::DatabaseFreeListKey
649 const char *p = KeyPrefix::decode(start, limit, &prefix);
691 static const char* decode(const char* start, const char* limit, DatabaseNameKey* result) function in class:WebCore::__anon13441::DatabaseNameKey
694 const char* p = KeyPrefix::decode(start, limit, &prefix);
763 static const char* decode(const char* start, const char* limit, ObjectStoreMetaDataKey* result) function in class:WebCore::__anon13441::ObjectStoreMetaDataKey
766 const char* p = KeyPrefix::decode(start, limit, &prefix);
831 static const char* decode(const char* start, const char* limit, IndexMetaDataKey* result) function in class:WebCore::__anon13441::IndexMetaDataKey
834 const char* p = KeyPrefix::decode(start, limit, &prefix)
902 static const char* decode(const char* start, const char* limit, ObjectStoreFreeListKey* result) function in class:WebCore::__anon13441::ObjectStoreFreeListKey
956 static const char* decode(const char* start, const char* limit, IndexFreeListKey* result) function in class:WebCore::__anon13441::IndexFreeListKey
1018 static const char* decode(const char* start, const char* limit, ObjectStoreNamesKey* result) function in class:WebCore::__anon13441::ObjectStoreNamesKey
1064 static const char* decode(const char* start, const char* limit, IndexNamesKey* result) function in class:WebCore::__anon13441::IndexNamesKey
1112 static const char* decode(const char* start, const char* end, ObjectStoreDataKey* result) function in class:WebCore::__anon13441::ObjectStoreDataKey
1160 static const char* decode(const char* start, const char* end, ExistsEntryKey* result) function in class:WebCore::__anon13441::ExistsEntryKey
1215 static const char* decode(const char* start, const char* limit, IndexDataKey* result) function in class:WebCore::__anon13441::IndexDataKey
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertyResourceBundleTest.java 75 CharBuffer cbuffer = charset.decode(ByteBuffer.wrap(content
86 cbuffer = charset.decode(ByteBuffer.wrap(content.getBytes("UTF-8")));
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
PolicyQualifierInfoTest.java 96 PolicyQualifierInfo.ASN1.decode(
129 PolicyQualifierInfo.ASN1.decode(
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertificateTest.java 265 is = new ByteArrayInputStream(Base64.decode(base64cert.getBytes("UTF-8")));
270 is = new ByteArrayInputStream(Base64.decode(base64crl.getBytes("UTF-8")));
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
CharWrapperTester.java 44 public abstract char[] decode(char[] delegateChars) throws Exception; method in class:CharWrapperTester
88 return decode(delegate.buffer.toString().toCharArray());

Completed in 669 milliseconds

<<11121314151617181920>>