/external/harfbuzz_ng/test/shaping/ |
hb-unicode-decode | 5 UtilMains.filter_multiple_strings_or_stdin (Unicode.decode, "UNICODE_STRING")
|
/external/chromium_org/third_party/JSON/JSON-2.59/t/ |
e08_decode.t | 2 # decode on Perl 5.005, 5.6, 5.8 or later 23 is($json->decode(q|"ü"|), "ü"); # utf8 24 is($json->decode(q|"\u00fc"|), "\xfc"); # latin1 25 is($json->decode(q|"\u00c3\u00bc"|), "\xc3\xbc"); # utf8 29 is($json->decode(q|"\u00e3\u0081\u0082"|), $str); 31 utf8::decode($str); # usually UTF-8 flagged on, but no-op for 5.005. 33 is($json->decode(q|"\u3042"|), $str); 36 my $utf8 = $json->decode(q|"\ud808\udf45"|); # chr 12345
|
xe08_decode.t | 2 # decode on Perl 5.005, 5.6, 5.8 or later 26 is($json->decode(q|"ü"|), "ü"); # utf8 27 is($json->decode(q|"\u00fc"|), "\xfc"); # latin1 28 is($json->decode(q|"\u00c3\u00bc"|), "\xc3\xbc"); # utf8 32 is($json->decode(q|"\u00e3\u0081\u0082"|), $str); 34 utf8::decode($str); # usually UTF-8 flagged on, but no-op for 5.005. 36 is($json->decode(q|"\u3042"|), $str); 39 my $utf8 = $json->decode(q|"\ud808\udf45"|); # chr 12345
|
/external/apache-http/src/org/apache/commons/codec/ |
BinaryDecoder.java | 37 * the decode process. 39 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
|
Decoder.java | 40 * this decode method will throw a DecoderException. 42 * @param pObject an object to "decode" 52 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
|
StringDecoder.java | 37 String decode(String pString) throws DecoderException; method in interface:StringDecoder
|
/libcore/luni/src/main/java/java/net/ |
URLDecoder.java | 25 * This class is used to decode a string which is encoded in the {@code 41 * @deprecated Use {@link #decode(String, String)} instead. 44 public static String decode(String s) { method in class:URLDecoder 45 return UriCodec.decode(s, true, Charset.defaultCharset(), true); 59 public static String decode(String s, String charsetName) throws UnsupportedEncodingException { method in class:URLDecoder 60 return UriCodec.decode(s, true, Charset.forName(charsetName), true);
|
/external/smack/src/org/jivesoftware/smack/util/ |
StringEncoder.java | 35 String decode(String string); method in interface:StringEncoder
|
Base64Encoder.java | 38 public String decode(String s) { method in class:Base64Encoder 39 return new String(Base64.decode(s));
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
Encoder.java | 7 * Encode and decode byte arrays (typically from binary to 7-bit ASCII 14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder 16 int decode(String data, OutputStream out) throws IOException; method in interface:Encoder
|
/frameworks/compile/mclinker/include/mcld/Support/ |
LEB128.h | 30 IntType decode(const ByteType *pBuf, size_t &pSize); 33 IntType decode(const ByteType *&pBuf); 76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize); 83 uint64_t decode<uint64_t>(const ByteType *&pBuf); 89 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize); 92 int64_t decode<int64_t>(const ByteType *&pBuf); 105 IntType decode(const char *pBuf, size_t &pSize) { function in namespace:mcld::leb128 106 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize); 110 IntType decode(const char *&pBuf) { function in namespace:mcld::leb128 111 return decode<IntType>(reinterpret_cast<const ByteType*&>(pBuf)) [all...] |
/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...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Type.java | 81 public final Object decode(byte[] encoded) throws IOException { method in class:ASN1Type 82 return decode(new DerInputStream(encoded)); 85 public final Object decode(byte[] encoded, int offset, int encodingLen) method in class:ASN1Type 87 return decode(new DerInputStream(encoded, offset, encodingLen)); 90 public final Object decode(InputStream in) throws IOException { method in class:ASN1Type 91 return decode(new DerInputStream(in)); 97 decode(decoder); 103 decode(decoder); 116 public abstract Object decode(BerInputStream in) throws IOException; method in class:ASN1Type
|
/external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
TextDecoder.h | 52 String decode(ArrayBufferView*, const Dictionary&, ExceptionState&); 53 String decode(ExceptionState& exceptionState) { return decode(0, Dictionary(), exceptionState); } function in class:WebCore::TextDecoder
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
URLDecoderTest.java | 38 * @tests java.net.URLDecoder#decode(java.lang.String) 44 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode( 46 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode( 48 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode( 53 * @tests java.net.URLDecoder#decode(java.lang.String, java.lang.String) 58 URLDecoder.decode("", "");
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/provider/cert/ |
CertFactoryTestData.java | 298 return Base64.decode(certPathPKCS7Base64.getBytes("UTF-8")); 302 return Base64.decode(certPathPkiPathBase64.getBytes("UTF-8")); 306 return Base64.decode(certEncodingBase64.getBytes("UTF-8")); 318 return Base64.decode(crlEncodingBase64.getBytes("UTF-8"));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
big5.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
big5hkscs.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
cp932.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
cp949.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
cp950.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
euc_jis_2004.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
euc_jisx0213.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
euc_jp.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|
euc_kr.py | 14 decode = codec.decode variable in class:Codec 34 decode=Codec().decode,
|