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

1 2 34 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
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,
string_escape.py 13 decode = codecs.escape_decode variable in class:Codec
20 def decode(self, input, final=False): member in class:IncrementalDecoder
33 decode=Codec.decode,
undefined.py 21 def decode(self,input,errors='strict'): member in class:Codec
29 def decode(self, input, final=False): member in class:IncrementalDecoder
44 decode=Codec().decode,
unicode_escape.py 18 decode = codecs.unicode_escape_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
unicode_internal.py 18 decode = codecs.unicode_internal_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
utf_16_be.py 15 def decode(input, errors='strict'): function
29 decode = codecs.utf_16_be_decode variable in class:StreamReader
37 decode=decode,
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,
ascii.py 18 decode = codecs.ascii_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode = codecs.ascii_encode variable in class:StreamConverter
45 decode=Codec.decode,
latin_1.py 18 decode = codecs.latin_1_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode = codecs.latin_1_encode variable in class:StreamConverter
45 decode=Codec.decode,
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_decrypt_key.c 37 ltc_asn1_list decode[3]; local
49 /* decode to find out hash */
50 LTC_SET_ASN1(decode, 0, LTC_ASN1_OBJECT_IDENTIFIER, hashOID, sizeof(hashOID)/sizeof(hashOID[0]));
52 if ((err = der_decode_sequence(in, inlen, decode, 1)) != CRYPT_OK) {
56 hash = find_hash_oid(hashOID, decode[0].size);
81 LTC_SET_ASN1(decode, 1, LTC_ASN1_INTEGER, g_pub, 1UL);
82 LTC_SET_ASN1(decode, 2, LTC_ASN1_OCTET_STRING, skey, MAXBLOCKSIZE);
85 if ((err = der_decode_sequence(in, inlen, decode, 3)) != CRYPT_OK) {
101 if (decode[2].size > y) {
107 if (*outlen < decode[2].size)
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.h 24 Error decode(const char* src, size_t length);
37 Error decode(const void* srcPtr, size_t length, bool writeDestination);
  /external/skia/src/utils/
SkBase64.h 24 Error decode(const char* src, size_t length);
37 Error decode(const void* srcPtr, size_t length, bool writeDestination);
  /external/smack/src/org/jivesoftware/smack/util/
Base64FileUrlEncoder.java 44 public String decode(String s) { method in class:Base64FileUrlEncoder
45 return new String(Base64.decode(s, Base64.URL_SAFE));
  /libcore/luni/src/test/java/libcore/java/net/
UrlEncodingTest.java 35 * URLDecoder and URI disagree on what '+' should decode to.
38 assertEquals("a b", URLDecoder.decode("a+b"));
39 assertEquals("a b", URLDecoder.decode("a+b", "UTF-8"));
50 assertEquals("a b", URLDecoder.decode("a b"));
51 assertEquals("a b", URLDecoder.decode("a b", "UTF-8"));
80 URLDecoder.decode("%");
85 URLDecoder.decode("%0");
101 URLDecoder.decode("%0g");
109 URLDecoder.decode("ab", null);
118 URLDecoder.decode("ab", "")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
ascii.py 18 decode = codecs.ascii_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode = codecs.ascii_encode variable in class:StreamConverter
45 decode=Codec.decode,
latin_1.py 18 decode = codecs.latin_1_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode = codecs.latin_1_encode variable in class:StreamConverter
45 decode=Codec.decode,
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 38 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
40 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
42 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
  /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;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64.java 93 * decode the base 64 encoded input data. It is assumed the input data is valid.
97 public static byte[] decode( method in class:Base64
105 encoder.decode(data, 0, data.length, bOut);
109 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
116 * decode the base 64 encoded String data - whitespace will be ignored.
120 public static byte[] decode( method in class:Base64
128 encoder.decode(data, bOut);
132 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
139 * decode the base 64 encoded String data writing it to the given output stream,
144 public static int decode( method in class:Base64
    [all...]

Completed in 1175 milliseconds

1 2 34 5 6 7 8 91011>>