HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 126 - 150 of 1187) sorted by null

1 2 3 4 56 7 8 91011>>

  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.MP3.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.AMR.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.WBAMR.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
Android.mk 26 LOCAL_MODULE:= libOMX.TI.WMA.decode
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Explicit.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Explicit
70 in.content = type.decode(in);
ASN1Sequence.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Sequence
ASN1SequenceOf.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SequenceOf
ASN1Set.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Set
ASN1SetOf.java 39 public Object decode(BerInputStream in) throws IOException { method in class:ASN1SetOf
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
SubjectKeyIdentifier.java 53 public static SubjectKeyIdentifier decode(byte[] encoding) method in class:SubjectKeyIdentifier
56 ASN1OctetString.getInstance().decode(encoding));
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetDecoderTest.java 36 assertEquals("\u6d61x", d.decode(in).toString());
46 CoderResult coderResult = decoder.decode(inBuffer, outBuffer, true);
62 CoderResult coderResult = decoder.decode(inBuffer, outBuffer, true);
75 CharBuffer outBuffer = decoder.decode(ByteBuffer.wrap(arr, offset, arr.length - offset));
95 cr = decoder.decode(ByteBuffer.wrap(new byte[] { (byte) 0xe2 }), cb, false);
97 cr = decoder.decode(ByteBuffer.wrap(new byte[] { (byte) 0x98 }), cb, false);
99 cr = decoder.decode(ByteBuffer.wrap(new byte[] { (byte) 0x83 }), cb, false);
101 cr = decoder.decode(ByteBuffer.wrap(new byte[0]), cb, true);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
testcodec.py 18 def decode(self,input,errors='strict'): member in class:Codec
32 return (Codec().encode,Codec().decode,StreamReader,StreamWriter)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
testcodec.py 18 def decode(self,input,errors='strict'): member in class:Codec
32 return (Codec().encode,Codec().decode,StreamReader,StreamWriter)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ShortTest.java 62 * @tests java.lang.Short#decode(java.lang.String)
66 // java.lang.Short.decode(java.lang.String)
67 assertTrue("Did not decode -1 correctly", Short.decode("-1")
69 assertTrue("Did not decode -100 correctly", Short.decode("-100")
71 assertTrue("Did not decode 23 correctly", Short.decode("23")
73 assertTrue("Did not decode 0x10 correctly", Short.decode("0x10"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ShaderResource.cpp 53 builder.append(m_decoder->decode(m_data->data(), m_data->size()));
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AsyncAudioDecoder.h 50 static void decode(ArrayBuffer* audioData, float sampleRate, AudioBufferCallback* successCallback, AudioBufferCallback* errorCallback);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecLatin1.h 39 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE;
TextCodecUTF16.h 40 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE;
TextCodecUserDefined.h 39 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE;
  /libcore/luni/src/main/java/java/security/
Certificate.java 50 public void decode(InputStream stream) throws KeyException, IOException; method in interface:Certificate
54 * {@link #decode(InputStream)} method must be able to decode the format
63 * @see #decode(InputStream)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
palmos.py 15 def decode(self,input,errors='strict'): member in class:Codec
23 def decode(self, input, final=False): member in class:IncrementalDecoder
38 decode=Codec().decode,
quopri_codec.py 29 """Decode the input, returning a tuple (output object, length consumed).
39 quopri.decode(f, g)
47 def decode(self, input,errors='strict'): member in class:Codec
55 def decode(self, input, final=False): member in class:IncrementalDecoder
70 decode=quopri_decode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
palmos.py 15 def decode(self,input,errors='strict'): member in class:Codec
23 def decode(self, input, final=False): member in class:IncrementalDecoder
38 decode=Codec().decode,
quopri_codec.py 29 """Decode the input, returning a tuple (output object, length consumed).
39 quopri.decode(f, g)
47 def decode(self, input,errors='strict'): member in class:Codec
55 def decode(self, input, final=False): member in class:IncrementalDecoder
70 decode=quopri_decode,
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BooleanTest.java 53 assertEquals("Decoding false value", Boolean.FALSE, asn1.decode(in));
57 assertEquals("Decoding true value", Boolean.TRUE, asn1.decode(in));
81 ASN1Boolean.getInstance().decode(in);

Completed in 713 milliseconds

1 2 3 4 56 7 8 91011>>