HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 226 - 250 of 1360) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 77 def __new__(cls, encode, decode, streamreader=None, streamwriter=None,
79 self = tuple.__new__(cls, (encode, decode, streamreader, streamwriter))
82 self.decode = decode
96 The .encode()/.decode() methods may use different error
133 def decode(self, input, errors='strict'): member in class:Codec
232 passed piece by piece to the decode() method. The IncrementalDecoder
233 remembers the state of the decoding process between calls to decode().
245 def decode(self, input, final=False): member in class:IncrementalDecoder
262 were passed to decode() that have not yet been converted
293 def decode(self, input, final=False): member in class:BufferedIncrementalDecoder
421 def decode(self, input, errors='strict'): member in class:StreamReader
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 77 def __new__(cls, encode, decode, streamreader=None, streamwriter=None,
79 self = tuple.__new__(cls, (encode, decode, streamreader, streamwriter))
82 self.decode = decode
96 The .encode()/.decode() methods may use different error
133 def decode(self, input, errors='strict'): member in class:Codec
232 passed piece by piece to the decode() method. The IncrementalDecoder
233 remembers the state of the decoding process between calls to decode().
245 def decode(self, input, final=False): member in class:IncrementalDecoder
262 were passed to decode() that have not yet been converted
293 def decode(self, input, final=False): member in class:BufferedIncrementalDecoder
421 def decode(self, input, errors='strict'): member in class:StreamReader
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
152 v1 = v1.decode(charset)
154 v2 = v2.decode(charset
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
152 v1 = v1.decode(charset)
154 v2 = v2.decode(charset
    [all...]
  /external/chromium_org/v8/src/
property-details.h 214 int pointer() const { return DescriptorPointer::decode(value_); }
239 PropertyType type() const { return TypeField::decode(value_); }
242 return AttributesField::decode(value_);
246 return DictionaryStorageField::decode(value_);
251 return DecodeRepresentation(RepresentationField::decode(value_));
255 return FieldIndexField::decode(value_);
267 bool IsDeleted() const { return DeletedField::decode(value_) != 0;}
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoder2Test.java 67 * @tests java.nio.charset.CharsetDecoder#decode(java.nio.ByteBuffer)
76 // decoder.decode(bb);
81 // CharBuffer charbuf = Charset.forName("UTF-16").decode(buf);
84 // charbuf = Charset.forName("UTF-16BE").decode(buf);
87 // charbuf = Charset.forName("UTF-16LE").decode(buf);
96 decoder2.decode(in);
104 * Test malfunction decode(ByteBuffer)
111 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode(
121 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
122 fail("Assert 1: Charset.decode should throw CoderMalfunctionError"); // NON-NLS-
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
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,
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,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
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,
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/chromium_org/third_party/tlslite/tlslite/utils/
compat.py 43 return binascii.b2a_hex(b).decode("ascii")
46 return binascii.b2a_base64(b).decode("ascii")
49 return base64.b32encode(b).decode("ascii")
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceDecoder.java 27 public Resource<GifBitmapWrapper> decode(ImageVideoWrapper source, int width, int height) throws IOException { method in class:GifBitmapWrapperResourceDecoder
40 Resource<GifData> gifResource = gifDecoder.decode(bis, width, height);
46 Resource<Bitmap> bitmapResource = bitmapDecoder.decode(source, width, height);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
Base64.java 38 public static byte[] decode(byte[] in) { method in class:Base64
39 return decode(in, in.length);
42 public static byte[] decode(byte[] in, int len) { method in class:Base64
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
DecodeHandler.java 53 if (message.what == R.id.decode) {
54 decode((byte[]) message.obj, message.arg1, message.arg2); method
62 * Decode the data within the viewfinder rectangle, and time how long it took. For efficiency,
63 * reuse the same reader objects from one decode to the next.
69 private void decode(byte[] data, int width, int height) { method in class:DecodeHandler
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 14 This module provides an interface to encode and decode both headers and bodies
31 'decode',
164 def decode(s, convert_eols=None):
165 """Decode a raw base64 string.
186 body_decode = decode
187 decodestring = decode
160 def decode(s, convert_eols=None): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 14 This module provides an interface to encode and decode both headers and bodies
31 'decode',
164 def decode(s, convert_eols=None):
165 """Decode a raw base64 string.
186 body_decode = decode
187 decodestring = decode
160 def decode(s, convert_eols=None): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codeccallbacks.py 174 self.assertEqual(sin.decode("utf-8", "test.relaxedutf8"), sout)
178 self.assertRaises(UnicodeDecodeError, sin.decode,
208 "\x00\x00\x00\x00\x00".decode,
218 "\x00\x00\x00\x00\x00".decode("unicode-internal", "ignore"),
223 "\x00\x00\x00\x00\x00".decode("unicode-internal", "replace"),
230 "\x00\x00\x00\x00\x00".decode("unicode-internal", "test.hui"),
255 s.decode("ascii", "test.handler1"),
259 s.decode("ascii", "test.handler2"),
264 "\\u3042\u3xxx".decode("unicode-escape", "test.handler1"),
269 "\\u3042\u3xx".decode("unicode-escape", "test.handler1")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codeccallbacks.py 174 self.assertEqual(sin.decode("utf-8", "test.relaxedutf8"), sout)
178 self.assertRaises(UnicodeDecodeError, sin.decode,
208 "\x00\x00\x00\x00\x00".decode,
218 "\x00\x00\x00\x00\x00".decode("unicode-internal", "ignore"),
223 "\x00\x00\x00\x00\x00".decode("unicode-internal", "replace"),
230 "\x00\x00\x00\x00\x00".decode("unicode-internal", "test.hui"),
255 s.decode("ascii", "test.handler1"),
259 s.decode("ascii", "test.handler2"),
264 "\\u3042\u3xxx".decode("unicode-escape", "test.handler1"),
269 "\\u3042\u3xx".decode("unicode-escape", "test.handler1")
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
Proc.java 39 return Integer.decode(d.getName());
  /dalvik/dx/tests/117-modified-utf8/com/android/dx/util/
Mutf8Test.java 32 assertEquals("BC\u0000", Mutf8.decode(in, new char[3]));
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
AnyTest.java 47 .decode(in)));
GeneralizedTimeTest.java 111 gtime.decode(in)); //decoded
120 gtime.decode(in)); //decoded
139 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
147 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/
AuthenticatedAttributesTest.java 42 ContentInfo token = (ContentInfo) ContentInfo.ASN1.decode(in);
SignerInfoTest.java 47 signerInfo = (SignerInfo) SignerInfo.ASN1.decode(encoding);

Completed in 2138 milliseconds

1 2 3 4 5 6 7 8 91011>>