| /external/jpeg/ |
| Android.mk | 35 # enable tile based decode
|
| /external/llvm/utils/lit/lit/ |
| ProgressBar.py | 139 return curses.tparm(to_bytes(arg), index).decode('ascii') or '' 150 cap = cap.decode('ascii')
|
| /external/robolectric/src/main/java/android/net/ |
| Uri__FromAndroid.java | 1040 return decode(encodedHost); 1545 values.add(decode(value)); method 1789 public static String decode(String s) { method in class:Uri__FromAndroid 2110 segmentBuilder.add(decode(path.substring(previous))); method [all...] |
| /external/webp/src/ |
| Android.mk | 128 LOCAL_MODULE := libwebp-decode
|
| /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
| Android.mk | 27 decode.c \
|
| /frameworks/base/core/tests/coretests/src/android/app/backup/ |
| BackupDataTest.java | 181 expectedBytes = Base64.decode(expected[1], Base64.DEFAULT); 211 expectedBytes = Base64.decode(expected[1], Base64.DEFAULT);
|
| /libcore/luni/src/main/java/java/util/jar/ |
| JarVerifier.java | 131 if (!MessageDigest.isEqual(d, Base64.decode(hash))) { 391 return MessageDigest.isEqual(b, Base64.decode(hashBytes));
|
| /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/ |
| CertBlacklistTest.java | 220 byte[] derCert = Base64.decode(cert.getBytes()); 227 byte[] derCert = Base64.decode(cert.getBytes());
|
| /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
| MimeUtility.java | 68 public static String decode(String s) { method in class:MimeUtility 76 return decode(unfold(s)); 185 * TODO: Need to decode %-escaped strings, as in: filename="ab%22d".
|
| /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
| ContactDrawable.java | 267 decode(); method 279 private void decode() { method in class:ContactDrawable
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
| decoder.py | 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex') 70 on attempt to decode an invalid string. If strict is False then literal 360 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder 372 """Decode a JSON document from ``s`` (a ``str`` or ``unicode`` 376 This can be used to decode a JSON document from a string that may
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_sysconfig.py | 298 test_platform = test_platform.decode('utf-8') 318 test_platform = test_platform.decode('utf-8')
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
| decoder.py | 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex') 70 on attempt to decode an invalid string. If strict is False then literal 360 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder 372 """Decode a JSON document from ``s`` (a ``str`` or ``unicode`` 376 This can be used to decode a JSON document from a string that may
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_sysconfig.py | 298 test_platform = test_platform.decode('utf-8') 318 test_platform = test_platform.decode('utf-8')
|
| /external/chromium_org/third_party/skia/tests/ |
| ImageDecodingTest.cpp | 59 // decode the alpha from it. 77 // Decode a resource: 90 SkDebugf("couldn't decode %s\n", filename.c_str()); 94 bool success = decoder->decode(&stream, &bm8888, kN32_SkColorType, 107 success = decoder->decode(&stream, &bm8888Unpremul, kN32_SkColorType, 162 // SkDebugf("about to decode \"%s\"\n", filename.c_str()); 184 // Decode just the bounds. This should always succeed. 185 bool success = decoder->decode(&stream, &bm, kN32_SkColorType, 192 // Keep track of the alpha type for testing later. If the full decode 193 // succeeds, the alpha type should be the same, unless the full decode [all...] |
| /external/skia/tests/ |
| ImageDecodingTest.cpp | 59 // decode the alpha from it. 77 // Decode a resource: 90 SkDebugf("couldn't decode %s\n", filename.c_str()); 94 bool success = decoder->decode(&stream, &bm8888, kN32_SkColorType, 107 success = decoder->decode(&stream, &bm8888Unpremul, kN32_SkColorType, 162 // SkDebugf("about to decode \"%s\"\n", filename.c_str()); 184 // Decode just the bounds. This should always succeed. 185 bool success = decoder->decode(&stream, &bm, kN32_SkColorType, 192 // Keep track of the alpha type for testing later. If the full decode 193 // succeeds, the alpha type should be the same, unless the full decode [all...] |
| /external/smack/src/org/jivesoftware/smack/util/ |
| Base64.java | 32 public final static int DECODE = 0;
804 public static byte[] decode( byte[] source, int off, int len, int options ) method in class:Base64 863 public static byte[] decode( String s ) method in class:Base64 878 public static byte[] decode( String s, int options ) method in class:Base64 [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
| CharsetTest.java | 288 CharBuffer out = cs.decode(in); 720 CharBuffer cb = c1.decode(ByteBuffer.wrap("abcdefg".getBytes("iso8859-1"))); 722 cb = c1.decode(ByteBuffer.wrap("".getBytes("iso8859-1"))); 728 CharBuffer cb = c1.decode(ByteBuffer.wrap("abcd\u5D14efg".getBytes("iso8859-1"))); 736 c.decode(null); 745 c.decode(ByteBuffer.wrap("hehe".getBytes())); [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/ |
| dbtables.py | 205 v = (v[0].decode("iso8859-1"), 206 v[1].decode("iso8859-1")) 212 v = (v[0].decode("iso8859-1"), 213 v[1].decode("iso8859-1")) 241 v = v.decode("iso8859-1") 466 newid = newid.decode("iso8859-1") # 8 bits
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| mhlib.py | 695 def getbodytext(self, decode = 1): 702 if not decode or encoding in ('', '7bit', '8bit', 'binary'): 709 mimetools.decode(self.fp, output, encoding) 749 self.bodyencoded = Message.getbodytext(self, decode=0) 757 def getbodytext(self, decode = 1): 758 if not decode: [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/ |
| dbtables.py | 205 v = (v[0].decode("iso8859-1"), 206 v[1].decode("iso8859-1")) 212 v = (v[0].decode("iso8859-1"), 213 v[1].decode("iso8859-1")) 241 v = v.decode("iso8859-1") 466 newid = newid.decode("iso8859-1") # 8 bits
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| mhlib.py | 695 def getbodytext(self, decode = 1): 702 if not decode or encoding in ('', '7bit', '8bit', 'binary'): 709 mimetools.decode(self.fp, output, encoding) 749 self.bodyencoded = Message.getbodytext(self, decode=0) 757 def getbodytext(self, decode = 1): 758 if not decode: [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
| test_email_renamed.py | 187 eq(msg.get_payload(decode=True), None) 189 eq(msg.get_payload(0).get_payload(decode=True), 192 eq(msg.get_payload(1).get_payload(decode=True), 195 eq(msg.get_payload(2).get_payload(decode=True), 199 eq(msg.get_payload(3).get_payload(decode=True), 202 eq(msg.get_payload(4).get_payload(decode=True), 211 eq(msg.get_payload(decode=True), 'hello world') 214 eq(msg.get_payload(decode=True), 'foo') 504 self.assertEqual(msg.get_payload(decode=True), x) [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
| test_email_renamed.py | 187 eq(msg.get_payload(decode=True), None) 189 eq(msg.get_payload(0).get_payload(decode=True), 192 eq(msg.get_payload(1).get_payload(decode=True), 195 eq(msg.get_payload(2).get_payload(decode=True), 199 eq(msg.get_payload(3).get_payload(decode=True), 202 eq(msg.get_payload(4).get_payload(decode=True), 211 eq(msg.get_payload(decode=True), 'hello world') 214 eq(msg.get_payload(decode=True), 'foo') 504 self.assertEqual(msg.get_payload(decode=True), x) [all...] |
| /external/chromium_org/v8/src/ |
| ic.h | 406 return ContextualModeBits::decode(state); 410 return ContextualModeBits::decode(extra_ic_state()); 571 return StrictModeState::decode(state); 585 return StrictModeState::decode(extra_ic_state()); 684 return ExtraICStateKeyedAccessStoreMode::decode(extra_state); [all...] |