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

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
mac_turkish.py 14 def decode(self,input,errors='strict'): member in class:Codec
22 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode=Codec().decode,
mbcs.py 20 def decode(input, errors='strict'): function
34 decode = mbcs_decode variable in class:StreamReader
42 decode=decode,
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,
ptcp154.py 19 def decode(self,input,errors='strict'): member in class:Codec
27 def decode(self, input, final=False): member in class:IncrementalDecoder
42 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,
rot_13.py 19 def decode(self,input,errors='strict'): member in class:Codec
27 def decode(self, input, final=False): member in class:IncrementalDecoder
42 decode=Codec().decode,
shift_jis.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
shift_jis_2004.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
shift_jisx0213.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
tis_620.py 14 def decode(self,input,errors='strict'): member in class:Codec
22 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode=Codec().decode,
utf_16.py 15 def decode(input, errors='strict'): function
100 del self.decode
104 def decode(self, input, errors='strict'): member in class:StreamReader
108 self.decode = codecs.utf_16_le_decode
110 self.decode = codecs.utf_16_be_decode
121 decode=decode,
utf_32.py 10 def decode(input, errors='strict'): function
124 del self.decode
128 def decode(self, input, errors='strict'): member in class:StreamReader
132 self.decode = codecs.utf_32_le_decode
134 self.decode = codecs.utf_32_be_decode
145 decode=decode,
utf_8_sig.py 17 def decode(input, errors='strict'): function
88 del self.decode
92 def decode(self, input, errors='strict'): member in class:StreamReader
99 self.decode = codecs.utf_8_decode
103 self.decode = codecs.utf_8_decode
112 decode=decode,
uu_codec.py 4 will return Python string objects for both encode and decode.
77 # Decode
101 def decode(self,input,errors='strict'): member in class:Codec
109 def decode(self, input, final=False): member in class:IncrementalDecoder
124 decode=uu_decode,
  /external/libvorbis/doc/
01-introduction.tex 12 understanding of the Vorbis decode process, which is
40 encoder and simple, low-complexity decoder. Vorbis decode is
62 end before or after packet decode expects.
91 flag in each audio packet, or begin decode at any frame in the stream
96 Vorbis \emph{can} initiate decode at any arbitrary packet within a
101 Thus, Vorbis headers are both required for decode to begin and
116 The Vorbis format is well-defined by its decode specification; any
124 Although Vorbis decode is computationally simple, it may still run
127 `full' decode specification yet still be certified compliant. These
134 component abstractions that perform specific functions in the decode
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
CertificateStub.java 53 * @see java.security.Certificate#decode(java.io.InputStream)
55 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
  /external/apache-http/src/org/apache/commons/codec/net/
BCodec.java 140 * A decoder exception is thrown if a failure condition is encountered during the decode process.
142 public String decode(String value) throws DecoderException { method in class:BCodec
185 * A decoder exception is thrown if a failure condition is encountered during the decode process.
187 public Object decode(Object value) throws DecoderException { method in class:BCodec
191 return decode((String) value);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
HexEncoder.java 75 * decode the Hex encoded byte data writing it to the given output stream,
80 public int decode( method in class:HexEncoder
133 * decode the Hex encoded String data writing it to the given output stream,
138 public int decode( method in class:HexEncoder
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.cpp 87 String TextDecoder::decode(ArrayBufferView* input, const Dictionary& options, ExceptionState& exceptionState) function in class:WebCore::TextDecoder
98 String s = m_codec->decode(start, length, flush, m_fatal, sawError);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodec.h 81 String decode(const char* str, size_t length, FlushBehavior flush = DoNotFlush) function in class:WTF::TextCodec
84 return decode(str, length, flush, false, ignored);
87 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) = 0;
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.cpp 37 SkBase64::Error SkBase64::decode(const void* srcPtr, size_t size, bool writeDestination) { function in class:SkBase64
156 SkBase64::Error SkBase64::decode(const char* src, size_t len) {
157 Error err = decode(src, len, false);
162 decode(src, len, true);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageVideoBitmapDecoder.java 25 public Resource<Bitmap> decode(ImageVideoWrapper source, int width, int height) throws IOException { method in class:ImageVideoBitmapDecoder
30 result = streamDecoder.decode(source.getStream(), width, height);
41 result = fileDescriptorDecoder.decode(source.getFileDescriptor(), width, height);
  /external/javasqlite/src/main/java/SQLite/
StringEncoder.java 38 * When decoded with this class' <code>decode</code> method
104 public static byte[] decode(String s) { method in class:StringEncoder
  /external/ksoap2/kobjects/org/ksoap2/kobjects/base64/
Base64.java 94 static int decode(char c) { method in class:Base64
118 public static byte[] decode(String s) { method in class:Base64
122 decode(s, bos); method
129 public static void decode(String s, OutputStream os) method in class:Base64
143 (decode(s.charAt(i)) << 18)
144 + (decode(s.charAt(i + 1)) << 12)
145 + (decode(s.charAt(i + 2)) << 6)
146 + (decode(s.charAt(i + 3)));
  /external/okhttp/okio/src/main/java/okio/
Base64.java 30 public static byte[] decode(String in) { method in class:Base64

Completed in 784 milliseconds

<<11121314151617181920>>