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

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
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.cpp 80 String TextDecoder::decode(ArrayBufferView* input, const Dictionary& options, ExceptionState& exceptionState) function in class:WebCore::TextDecoder
94 String s = m_codec->decode(start, length, flush, m_fatal, sawError);
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AsyncAudioDecoder.cpp 61 m_thread->postTask(new Task(WTF::bind(&AsyncAudioDecoder::decode, audioDataRef.release().leakRef(), sampleRate, successCallback.leakPtr(), errorCallback.leakPtr())));
64 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/
TextCodec.h 65 String decode(const char* str, size_t length, bool flush = false) function in class:WTF::TextCodec
68 return decode(str, length, flush, false, ignored);
71 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
TextCodecUTF16.cpp 69 String TextCodecUTF16::decode(const char* bytes, size_t length, bool, bool, bool&) function in class:WTF::TextCodecUTF16
TextCodecUserDefined.cpp 52 String TextCodecUserDefined::decode(const char* bytes, size_t length, bool, bool, bool&) function in class:WTF::TextCodecUserDefined
TextEncoding.h 48 String decode(const char* str, size_t length) const function in class:WTF::TextEncoding
51 return decode(str, length, false, ignored);
53 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
  /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/dropbear/libtomcrypt/src/pk/ecc/
ecc_decrypt_key.c 43 ltc_asn1_list decode[3]; local
55 /* decode to find out hash */
56 LTC_SET_ASN1(decode, 0, LTC_ASN1_OBJECT_IDENTIFIER, hashOID, sizeof(hashOID)/sizeof(hashOID[0]));
58 if ((err = der_decode_sequence(in, inlen, decode, 1)) != CRYPT_OK) {
62 hash = find_hash_oid(hashOID, decode[0].size);
85 LTC_SET_ASN1(decode, 1, LTC_ASN1_OCTET_STRING, pub_expt, ECC_BUF_SIZE);
86 LTC_SET_ASN1(decode, 2, LTC_ASN1_OCTET_STRING, skey, MAXBLOCKSIZE);
89 if ((err = der_decode_sequence(in, inlen, decode, 3)) != CRYPT_OK) {
94 if ((err = ecc_import(decode[1].data, decode[1].size, &pubkey)) != CRYPT_OK)
    [all...]
  /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
  /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:__anon30612::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
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Boolean.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Boolean
ASN1Enumerated.java 63 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Enumerated
ASN1OctetString.java 61 @Override public Object decode(BerInputStream in) throws IOException { method in class:ASN1OctetString
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

Completed in 314 milliseconds

1 23 4 5 6 7 8 91011>>