HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 51 - 75 of 667) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
utf_16_le.py 15 def decode(input, errors='strict'): function
29 decode = codecs.utf_16_le_decode variable in class:StreamReader
37 decode=decode,
utf_32_be.py 10 def decode(input, errors='strict'): function
24 decode = codecs.utf_32_be_decode variable in class:StreamReader
32 decode=decode,
utf_32_le.py 10 def decode(input, errors='strict'): function
24 decode = codecs.utf_32_le_decode variable in class:StreamReader
32 decode=decode,
utf_7.py 11 def decode(input, errors='strict'): function
25 decode = codecs.utf_7_decode variable in class:StreamReader
33 decode=decode,
utf_8.py 15 def decode(input, errors='strict'): function
29 decode = codecs.utf_8_decode variable in class:StreamReader
37 decode=decode,
  /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)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /external/libvorbis/doc/
04-codec.tex 5 \section{Codec Setup and Packet Decode} \label{vorbis:spec:codec}
10 bit-by-bit decode specification of Vorbis I. This document assumes a
11 high-level understanding of the Vorbis decode process, which is
17 \subsection{Header decode and decode setup}
21 and the setup header. All are required for decode compliance. An
26 \subsubsection{Common header decode}
36 Decode continues according to packet type; the identification header
86 Comment header decode and data specification is covered in
101 needed for decode. The setup header contains, in order, the lists o
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
EncodeHtmlDataUriTest.java 24 private String decode(String dataUri) throws java.io.UnsupportedEncodingException { method in class:EncodeHtmlDataUriTest
26 return URLDecoder.decode(data, "UTF-8");
33 String decodedUri = decode(encodedUri);
41 String decodedUri = decode(encodedUri);
49 String decodedUri = decode(encodedUri);
58 String decodedUri = decode(encodedUri);
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.h 55 String decode(ArrayBufferView*, const Dictionary&, ExceptionState&);
56 String decode(ExceptionState& exceptionState) { return decode(0, Dictionary(), exceptionState); } function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AsyncAudioDecoder.cpp 63 m_thread->postTask(new Task(WTF::bind(&AsyncAudioDecoder::decode, audioDataRef.release().leakRef(), sampleRate, successCallback.leakPtr(), errorCallback.leakPtr())));
66 void AsyncAudioDecoder::decode(ArrayBuffer* audioData, float sampleRate, AudioBufferCallback* successCallback, AudioBufferCallback* errorCallback) function in class:WebCore::AsyncAudioDecoder
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageDecoder.cpp 65 decode(true);
83 decode(false);
95 void BMPImageDecoder::decode(bool onlySize) function in class:WebCore::BMPImageDecoder
100 // If we couldn't decode the image but we've received all the data, decoding
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUTF16.cpp 70 String TextCodecUTF16::decode(const char* bytes, size_t length, FlushBehavior flush, bool, bool& sawError) function in class:WTF::TextCodecUTF16
TextCodecUserDefined.cpp 52 String TextCodecUserDefined::decode(const char* bytes, size_t length, FlushBehavior, bool, bool&) function in class:WTF::TextCodecUserDefined
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
serialization.py 73 def decode(self, json_str): # pylint: disable=W0221 member in class:MmapDecoder
74 d = super(MmapDecoder, self).decode(json_str)
83 def decode(self, json_str): # pylint: disable=W0221 member in class:SymbolsDecoder
84 d = super(SymbolsDecoder, self).decode(json_str)
95 def decode(self, json_str): # pylint: disable=W0221 member in class:NativeHeapDecoder
96 d = super(NativeHeapDecoder, self).decode(json_str)
  /external/dexmaker/src/dx/java/com/android/dx/util/
Mutf8.java 33 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { method in class:Mutf8
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
FileDescriptorBitmapDecoder.java 30 public Resource<Bitmap> decode(ParcelFileDescriptor source, int width, int height) throws IOException { method in class:FileDescriptorBitmapDecoder
31 Bitmap bitmap = bitmapDecoder.decode(source, bitmapPool, width, height, decodeFormat);
StreamBitmapDecoder.java 36 public Resource<Bitmap> decode(InputStream source, int width, int height) { method in class:StreamBitmapDecoder
37 Bitmap bitmap = downsampler.decode(source, bitmapPool, width, height, decodeFormat);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifFrameResourceDecoder.java 20 public Resource<Bitmap> decode(GifDecoder source, int width, int height) throws IOException { method in class:GifFrameResourceDecoder
  /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/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 32 * Decode the given message if necessary and possible.
35 * given message if this class can't decode it.
37 public static HttpResponseMessage decode(HttpResponseMessage message) method in class:HttpMessageDecoder
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_ArithIntDecoder.cpp 17 int CJBig2_ArithIntDecoder::decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult) function in class:CJBig2_ArithIntDecoder
23 S = pArithDecoder->DECODE(IAx + PREV);
25 D = pArithDecoder->DECODE(IAx + PREV);
28 D = pArithDecoder->DECODE(IAx + PREV);
31 D = pArithDecoder->DECODE(IAx + PREV);
34 D = pArithDecoder->DECODE(IAx + PREV);
37 D = pArithDecoder->DECODE(IAx + PREV);
64 D = pArithDecoder->DECODE(IAx + PREV);
92 int CJBig2_ArithIaidDecoder::decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult) function in class:CJBig2_ArithIaidDecoder
99 D = pArithDecoder->DECODE(IAID + PREV);
    [all...]
  /frameworks/opt/net/voip/src/jni/rtp/
GsmCodec.cpp 47 int decode(int16_t *samples, int count, void *payload, int length);
60 int GsmCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon38995::GsmCodec
  /libcore/dex/src/main/java/com/android/dex/
Mutf8.java 34 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { method in class:Mutf8
  /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

Completed in 1641 milliseconds

1 23 4 5 6 7 8 91011>>