HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 426 - 450 of 3619) sorted by null

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
DecoderUtil.java 45 * @param s the string to decode.
74 * @param s the string to decode.
104 * @param encodedWord the encoded word to decode.
120 * @param encodedWord the encoded word to decode.
153 * @param body the string to decode.
273 log.warn("Could not decode encoded word '"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 17 __all__ = ["Message","choose_boundary","encode","decode","copyliteral",
157 def decode(input, output, encoding): function
158 """Decode common content-transfer-encodings (base64, quopri, uuencode)."""
161 return base64.decode(input, output)
164 return quopri.decode(input, output)
167 return uu.decode(input, output)
quopri.py 7 __all__ = ["encode", "decode", "encodestring", "decodestring"]
116 def decode(input, output, header = 0): function
119 If 'header' is true, decode underscore as space (per RFC 1522)."""
165 decode(infp, outfp, header = header)
202 print "-d: decode; default encode"
226 decode(fp, sys.stdout)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicode_file.py 17 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
31 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
62 base = base.decode(TESTFN_ENCODING)
67 file_list = [f.decode(TESTFN_ENCODING) for f in file_list]
128 cwd_result = os.getcwd().decode(TESTFN_ENCODING)
129 name_result = make_name.decode(TESTFN_ENCODING)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 17 __all__ = ["Message","choose_boundary","encode","decode","copyliteral",
157 def decode(input, output, encoding): function
158 """Decode common content-transfer-encodings (base64, quopri, uuencode)."""
161 return base64.decode(input, output)
164 return quopri.decode(input, output)
167 return uu.decode(input, output)
quopri.py 7 __all__ = ["encode", "decode", "encodestring", "decodestring"]
116 def decode(input, output, header = 0): function
119 If 'header' is true, decode underscore as space (per RFC 1522)."""
165 decode(infp, outfp, header = header)
202 print "-d: decode; default encode"
226 decode(fp, sys.stdout)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicode_file.py 17 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
31 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
62 base = base.decode(TESTFN_ENCODING)
67 file_list = [f.decode(TESTFN_ENCODING) for f in file_list]
128 cwd_result = os.getcwd().decode(TESTFN_ENCODING)
129 name_result = make_name.decode(TESTFN_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/commons/codec/net/
URLCodec.java 205 public byte[] decode(byte[] bytes) throws DecoderException { method in class:URLCodec
264 public String decode(String pString, String charset) method in class:URLCodec
270 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
285 public String decode(String pString) throws DecoderException { method in class:URLCodec
290 return decode(pString, getDefaultCharset());
330 public Object decode(Object pObject) throws DecoderException { method in class:URLCodec
334 return decode((byte[])pObject);
336 return decode((String)pObject);
  /external/chromium/chrome/browser/chromeos/login/
user_image_loader.h 52 // Contains attributes we need to know about each image we decode.
85 // Holds info structures about all images we're trying to decode.
  /external/chromium/sdch/open-vcdiff/
README 16 vcdiff decode -dictionary file.dict < delta_file > target_file
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /external/chromium_org/content/renderer/media/
audio_decoder.cc 26 // Decode in-memory audio file data.
69 // Decode the audio file data.
pepper_platform_video_decoder.cc 49 void PlatformVideoDecoder::Decode(const BitstreamBuffer& bitstream_buffer) {
51 decoder_->Decode(bitstream_buffer);
  /external/chromium_org/media/filters/
ffmpeg_video_decoder.cc 152 void FFmpegVideoDecoder::Decode(const scoped_refptr<DecoderBuffer>& buffer,
179 // Defer the reset if a decode is pending.
203 // Reset is pending only when decode is pending.
228 // During decode, because reads are issued asynchronously, it is possible to
229 // receive multiple end of stream buffers since each decode is acked. When the
231 // up in the decoder so we need to go through the decode loop until it stops
235 // kNormal: This is the starting state. Buffers are decoded. Decode errors
316 // Log the problem if we can't decode a video frame and exit early.
  /external/chromium_org/sdch/open-vcdiff/
README 16 vcdiff decode -dictionary file.dict < delta_file > target_file
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h 67 // data coming, sets the "decode failure" flag.
68 void decode(bool onlySize);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h 66 // data coming, sets the "decode failure" flag.
67 void decode(bool onlySize);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h 34 #include "webp/decode.h"
55 bool decode(const uint8_t* dataBytes, size_t dataSize, bool onlySize, size_t frameIndex);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextEncodingRegistry.h 39 // Use TextResourceDecoder::decode to decode resources, since it handles BOMs.
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_video_decoder.h 70 * decode a macroblock
79 * decode a bitstream
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_decode_sequence_multi.c 17 ASN.1 DER, decode a SEQUENCE, Tom St Denis
23 Decode a SEQUENCE type using a VA list
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_decrypt_key.c 77 /* rsa decode the packet */
89 /* now OAEP decode the packet */
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_v1_5_decode.c 20 /** @brief PKCS #1 v1.5 decode.
22 * @param msg The encoded data to decode
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_decrypt_key.c 81 /* rsa decode the packet */
89 /* now OAEP decode the packet */
  /external/libvorbis/doc/vorbisfile/
return.html 35 <dd>Read error while fetching compressed data for decode</dd>
38 <dd>Internal inconsistency in decode state. Continuing is likely not possible.</dd>

Completed in 1198 milliseconds

<<11121314151617181920>>