| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_codecs.py | 54 result += d.decode(c) 57 self.assertEqual(d.decode("", True), u"") 64 result += d.decode(c) 67 self.assertEqual(d.decode("", True), u"") 535 self.assertEqual(raw.decode('utf-16le', 'replace'), expected) 572 self.assertEqual(raw.decode('utf-16be', 'replace'), expected) 688 self.assertEqual(d.decode(s.encode("utf-8-sig")), s) 739 decode = codecs.escape_decode 743 self.assertEqual(decode(b + '0'), (b + '0', 2)) 746 decode = codecs.escape_decod [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_codecs.py | 54 result += d.decode(c) 57 self.assertEqual(d.decode("", True), u"") 64 result += d.decode(c) 67 self.assertEqual(d.decode("", True), u"") 535 self.assertEqual(raw.decode('utf-16le', 'replace'), expected) 572 self.assertEqual(raw.decode('utf-16be', 'replace'), expected) 688 self.assertEqual(d.decode(s.encode("utf-8-sig")), s) 739 decode = codecs.escape_decode 743 self.assertEqual(decode(b + '0'), (b + '0', 2)) 746 decode = codecs.escape_decod [all...] |
| /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
| CellBroadcastConfigService.java | 67 int startId = Integer.decode(channelRange.substring(0, dashIndex).trim()); 68 int endId = Integer.decode(channelRange.substring(dashIndex + 1).trim()); 77 int messageId = Integer.decode(channelRange.trim()); 125 int startId = Integer.decode(channelRange.substring(0, dashIndex).trim()); 126 int endId = Integer.decode(channelRange.substring(dashIndex + 1).trim()); 131 int emergencyMessageId = Integer.decode(channelRange.trim());
|
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
| DerUTCTimeEDTest.java | 109 assertEquals(187, (myDate.getTime() - ((Date) uTime.decode(dis)).getTime())); 119 assertEquals(myDate, uTime.decode(dis));
|
| SequenceOfTest.java | 85 .decode(in)); 118 seqVerify.decode(in);
|
| UTCTimeTest.java | 102 utime.decode(in)); //decoded 111 utime.decode(in)); //decoded
|
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x501/ |
| NameTest.java | 69 Name principal = (Name) Name.ASN1.decode(mess); 81 Name principal = (Name) Name.ASN1.decode(is);
|
| /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/ |
| DigitalSignatureTest.java | 81 .decode(b64PrivateKeySpec))); 84 .decode(b64PublicKeySpec)));
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
| HexEncoder.java | 75 * decode the Hex encoded byte data writing it to the given output stream, 80 public int decode( method in class:HexEncoder 133 * decode the Hex encoded String data writing it to the given output stream, 138 public int decode( method in class:HexEncoder
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
| backward.py | 109 return b.decode('utf8') 137 f.write(text.decode('utf8'))
|
| /external/chromium_org/third_party/mesa/src/src/mesa/main/ |
| texcompress_rgtc_tmp.h | 35 TYPE decode; local 46 decode = alpha0; 48 decode = alpha1; 50 decode = ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7); 52 decode = ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5); 54 decode = T_MIN; 56 decode = T_MAX; 58 *value = decode;
|
| /external/fonttools/Lib/fontTools/misc/ |
| py23.py | 55 blob = blob.decode('latin-1') 73 return s.decode(encoding)
|
| /external/harfbuzz_ng/test/shaping/ |
| record-test.sh | 10 unicodes=`./hb-unicode-decode`
|
| /external/mesa3d/src/mesa/main/ |
| texcompress_rgtc_tmp.h | 35 TYPE decode; local 46 decode = alpha0; 48 decode = alpha1; 50 decode = ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7); 52 decode = ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5); 54 decode = T_MIN; 56 decode = T_MAX; 58 *value = decode;
|
| /external/pdfium/core/src/fxcodec/jbig2/ |
| JBig2_ArithIntDecoder.cpp | 17 int CJBig2_ArithIntDecoder::decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult)
function in class:CJBig2_ArithIntDecoder 23 S = pArithDecoder->DECODE(IAx + PREV);
25 D = pArithDecoder->DECODE(IAx + PREV);
28 D = pArithDecoder->DECODE(IAx + PREV);
31 D = pArithDecoder->DECODE(IAx + PREV);
34 D = pArithDecoder->DECODE(IAx + PREV);
37 D = pArithDecoder->DECODE(IAx + PREV);
64 D = pArithDecoder->DECODE(IAx + PREV);
92 int CJBig2_ArithIaidDecoder::decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult)
function in class:CJBig2_ArithIaidDecoder 99 D = pArithDecoder->DECODE(IAID + PREV); [all...] |
| /external/qemu/distrib/jpeg-6b/ |
| Android.mk | 30 # enable tile based decode
|
| /frameworks/base/core/java/android/net/ |
| MailTo.java | 58 * Parse and decode a mailto scheme string. This parser implements 87 m.mHeaders.put(Uri.decode(nameval[0]).toLowerCase(Locale.ROOT), 88 nameval.length > 1 ? Uri.decode(nameval[1]) : null);
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
| ComprehensionTlv.java | 43 * {@link #decode(byte[], int) decode} method. 93 ComprehensionTlv ctlv = ComprehensionTlv.decode(data, startIndex); 114 public static ComprehensionTlv decode(byte[] data, int startIndex) method in class:ComprehensionTlv 128 Rlog.d("CAT ", "decode: unexpected first tag byte=" + Integer.toHexString(temp) +
|
| /libcore/luni/src/main/java/java/lang/ |
| Byte.java | 133 public static Byte decode(String string) throws NumberFormatException { method in class:Byte 134 int intValue = Integer.decode(string);
|
| Short.java | 133 public static Short decode(String string) throws NumberFormatException { method in class:Short 134 int intValue = Integer.decode(string).intValue();
|
| /libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
| ASN1Choice.java | 117 * If it is a matter what time format should be used to decode/encode 300 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Choice 303 throw new ASN1Exception("Failed to decode ASN.1 choice type. No alternatives were found for " + getClass().getName());// FIXME message 308 in.content = type[index].decode(in);
|
| /libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
| AuthorityKeyIdentifier.java | 67 public static AuthorityKeyIdentifier decode(byte[] encoding) throws IOException { method in class:AuthorityKeyIdentifier 68 AuthorityKeyIdentifier aki = (AuthorityKeyIdentifier) ASN1.decode(encoding);
|
| Extension.java | 253 extnValueObject = SubjectKeyIdentifier.decode(extnValue); 265 extnValueObject = NameConstraints.decode(extnValue); 267 extnValueObject = CertificatePolicies.decode(extnValue); 269 extnValueObject = AuthorityKeyIdentifier.decode(extnValue); 279 extnValueObject = CRLDistributionPoints.decode(extnValue); 289 extnValueObject = IssuingDistributionPoint.decode(extnValue); 291 extnValueObject = InfoAccessSyntax.decode(extnValue); 293 extnValueObject = InfoAccessSyntax.decode(extnValue); 387 // decode Key Usage and Basic Constraints extension values
|
| /libcore/luni/src/test/java/libcore/java/nio/charset/ |
| OldCharset_SingleByteAbstractTest.java | 53 outputCB = decoder.decode(inputBB); 69 outputCB = decoder.decode(inputBB); 93 // outputCB = decoder.decode(inputBB);
|
| /packages/apps/Gallery2/src/com/android/gallery3d/data/ |
| DecodeUtils.java | 61 public static Bitmap decode(JobContext jc, FileDescriptor fd, Options options) { method in class:DecodeUtils 78 public static Bitmap decode(JobContext jc, byte[] bytes, Options options) { method in class:DecodeUtils 79 return decode(jc, bytes, 0, bytes.length, options); 82 public static Bitmap decode(JobContext jc, byte[] bytes, int offset, method in class:DecodeUtils 258 Bitmap bitmap = decode(jc, data, offset, length, options); 267 Log.w(TAG, "decode fail with a given bitmap, try decode to a new bitmap"); 270 return decode(jc, data, offset, length, options); 285 Bitmap bitmap = DecodeUtils.decode(jc, fileDescriptor, options); 294 Log.w(TAG, "decode fail with a given bitmap, try decode to a new bitmap") [all...] |