HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 1 - 25 of 2271) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/harfbuzz_ng/test/shaping/
hb-unicode-decode 5 UtilMains.filter_multiple_strings_or_stdin (Unicode.decode, "UNICODE_STRING")
  /external/webkit/LayoutTests/fast/encoding/
char-decoding-expected.txt 6 PASS decode('UTF-8', '%E2%88%9A') is 'U+221A'
7 PASS decode('gb2312', '%A3%A0') is 'U+3000'
8 PASS decode('gb_2312-80', '%A3%A0') is 'U+3000'
9 PASS decode('chinese', '%A3%A0') is 'U+3000'
10 PASS decode('gbk', '%A3%A0') is 'U+3000'
11 PASS decode('gb18030', '%A3%A0') is 'U+3000'
12 PASS decode('EUC-CN', '%A3%A0') is 'U+3000'
13 PASS decode('Shift_JIS', '%82%d0') is 'U+3072'
14 PASS decode('shift-jis', '%82%d0') is 'U+3072'
15 PASS decode('korean', '%A2%E6') is 'U+20AC
    [all...]
char-decoding-mac-expected.txt 6 PASS decode('mac', '%C3') is 'U+221A'
7 PASS decode('macintosh', '%C3') is 'U+221A'
8 PASS decode('MacRoman', '%C3') is 'U+221A'
9 PASS decode('x-mac-greek', '%B0') is 'U+0391'
10 PASS decode('x-mac-ukrainian', '%80') is 'U+0410'
11 PASS decode('x-mac-cyrillic', '%80') is 'U+0410'
12 PASS decode('mac-cyrillic', '%80') is 'U+0410'
13 PASS decode('x-mac-centraleurroman', '%81') is 'U+0100'
14 PASS decode('x-mac-ce', '%81') is 'U+0100'
15 PASS decode('x-mac-turkish', '%81') is 'U+00C5
    [all...]
  /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
Base64.java 63 * decode the base 64 encoded input data. It is assumed the input data is valid.
67 public static byte[] decode( method in class:Base64
75 encoder.decode(data, 0, data.length, bOut);
79 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
86 * decode the base 64 encoded String data - whitespace will be ignored.
90 public static byte[] decode( method in class:Base64
98 encoder.decode(data, bOut);
102 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
109 * decode the base 64 encoded String data writing it to the given output stream,
114 public static int decode( method in class:Base64
    [all...]
Hex.java 75 * decode the Hex encoded input data. It is assumed the input data is valid.
79 public static byte[] decode( method in class:Hex
86 encoder.decode(data, 0, data.length, bOut);
97 * decode the Hex encoded String data - whitespace will be ignored.
101 public static byte[] decode( method in class:Hex
108 encoder.decode(data, bOut);
119 * decode the Hex encoded String data writing it to the given output stream,
124 public static int decode( method in class:Hex
129 return encoder.decode(data, out);
  /external/webkit/Source/WebKit2/Shared/
WebPageCreationParameters.cpp 65 bool WebPageCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, WebPageCreationParameters& parameters) function in class:WebKit::WebPageCreationParameters
67 if (!decoder->decode(parameters.viewSize))
69 if (!decoder->decode(parameters.isActive))
71 if (!decoder->decode(parameters.isFocused))
73 if (!decoder->decode(parameters.isVisible))
75 if (!decoder->decode(parameters.isInWindow))
77 if (!decoder->decode(parameters.store))
81 if (!decoder->decode(parameters.pageGroupData))
83 if (!decoder->decode(parameters.drawsBackground))
85 if (!decoder->decode(parameters.drawsTransparentBackground)
    [all...]
WebProcessCreationParameters.cpp 84 bool WebProcessCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, WebProcessCreationParameters& parameters) function in class:WebKit::WebProcessCreationParameters
86 if (!decoder->decode(parameters.injectedBundlePath))
88 if (!decoder->decode(parameters.injectedBundlePathExtensionHandle))
90 if (!decoder->decode(parameters.applicationCacheDirectory))
92 if (!decoder->decode(parameters.databaseDirectory))
94 if (!decoder->decode(parameters.localStorageDirectory))
96 if (!decoder->decode(parameters.urlSchemesRegistererdAsEmptyDocument))
98 if (!decoder->decode(parameters.urlSchemesRegisteredAsSecure))
100 if (!decoder->decode(parameters.urlSchemesForWhichDomainRelaxationIsForbidden))
102 if (!decoder->decode(parameters.mimeTypesWithCustomRepresentation)
    [all...]
PlatformPopupMenuData.cpp 68 bool PlatformPopupMenuData::decode(CoreIPC::ArgumentDecoder* decoder, PlatformPopupMenuData& data) function in class:WebKit::PlatformPopupMenuData
71 if (!decoder->decode(data.m_clientPaddingLeft))
73 if (!decoder->decode(data.m_clientPaddingRight))
75 if (!decoder->decode(data.m_clientInsetLeft))
77 if (!decoder->decode(data.m_clientInsetRight))
79 if (!decoder->decode(data.m_popupWidth))
81 if (!decoder->decode(data.m_itemHeight))
85 if (!decoder->decode(notSelectedBackingStoreHandle))
90 if (!decoder->decode(selectedBackingStoreHandle))
94 if (!decoder->decode(data.fontInfo)
    [all...]
WebCoreArgumentCoders.h 73 static bool decode(ArgumentDecoder* decoder, WebCore::MimeClassInfo& mimeClassInfo) function in struct:CoreIPC::ArgumentCoder
75 if (!decoder->decode(mimeClassInfo.type))
77 if (!decoder->decode(mimeClassInfo.desc))
79 if (!decoder->decode(mimeClassInfo.extensions))
95 static bool decode(ArgumentDecoder* decoder, WebCore::PluginInfo& pluginInfo) function in struct:CoreIPC::ArgumentCoder
97 if (!decoder->decode(pluginInfo.name))
99 if (!decoder->decode(pluginInfo.file))
101 if (!decoder->decode(pluginInfo.desc))
103 if (!decoder->decode(pluginInfo.mimes))
116 static bool decode(ArgumentDecoder* decoder, WebCore::HTTPHeaderMap& headerMap function in struct:CoreIPC::ArgumentCoder
128 static bool decode(ArgumentDecoder* decoder, WebCore::AuthenticationChallenge& challenge) function in struct:CoreIPC::ArgumentCoder
151 static bool decode(ArgumentDecoder* decoder, WebCore::ProtectionSpace& space) function in struct:CoreIPC::ArgumentCoder
174 static bool decode(ArgumentDecoder* decoder, WebCore::Credential& credential) function in struct:CoreIPC::ArgumentCoder
214 static bool decode(ArgumentDecoder* decoder, WebCore::Cursor& cursor) function in struct:CoreIPC::ArgumentCoder
258 static bool decode(ArgumentDecoder* decoder, WebCore::ResourceRequest& resourceRequest) function in struct:CoreIPC::ArgumentCoder
274 static bool decode(ArgumentDecoder* decoder, WebCore::ResourceResponse& resourceResponse) function in struct:CoreIPC::ArgumentCoder
290 static bool decode(ArgumentDecoder* decoder, WebCore::ResourceError& resourceError) function in struct:CoreIPC::ArgumentCoder
317 static bool decode(ArgumentDecoder* decoder, WebCore::WindowFeatures& windowFeatures) function in struct:CoreIPC::ArgumentCoder
367 static bool decode(ArgumentDecoder* decoder, WebCore::Color& color) function in struct:CoreIPC::ArgumentCoder
394 static bool decode(ArgumentDecoder* decoder, WebCore::KeypressCommand& keypressCommand) function in struct:CoreIPC::ArgumentCoder
407 static bool decode(ArgumentDecoder* decoder, WebCore::CompositionUnderline& underline) function in struct:CoreIPC::ArgumentCoder
419 static bool decode(ArgumentDecoder* decoder, WebCore::DatabaseDetails& details) function in struct:CoreIPC::ArgumentCoder
442 static bool decode(ArgumentDecoder* decoder, WebCore::GrammarDetail& detail) function in struct:CoreIPC::ArgumentCoder
467 static bool decode(ArgumentDecoder* decoder, WebCore::TextCheckingResult& result) function in struct:CoreIPC::ArgumentCoder
    [all...]
UpdateInfo.cpp 43 bool UpdateInfo::decode(CoreIPC::ArgumentDecoder* decoder, UpdateInfo& result) function in class:WebKit::UpdateInfo
45 if (!decoder->decode(result.viewSize))
47 if (!decoder->decode(result.scrollRect))
49 if (!decoder->decode(result.scrollOffset))
51 if (!decoder->decode(result.updateRectBounds))
53 if (!decoder->decode(result.updateRects))
55 if (!decoder->decode(result.bitmapHandle))
  /external/llvm/test/MC/Disassembler/X86/
invalid-cmp-imm.txt 3 # This instruction would decode as cmpordps if the immediate byte was less than 8.
5 # This instruction would decode as cmpordpd if the immediate byte was less than 8.
7 # This instruction would decode as cmpordss if the immediate byte was less than 8.
9 # This instruction would decode as cmpordsd if the immediate byte was less than 8.
  /external/openfst/src/script/
decode.cc 19 #include <fst/script/decode.h>
25 void Decode(MutableFstClass *ofst, const string &coder_fname) {
28 Apply<Operation<DecodeArgs> >("Decode", ofst->ArcType(), &args);
31 REGISTER_FST_OPERATION(Decode, StdArc, DecodeArgs);
32 REGISTER_FST_OPERATION(Decode, LogArc, DecodeArgs);
33 REGISTER_FST_OPERATION(Decode, Log64Arc, DecodeArgs);
  /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...]
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.cpp 41 return JSValue::encode(JSValue::decode(encodedOp).toThisObject(exec));
46 JSValue op1 = JSValue::decode(encodedOp1);
47 JSValue op2 = JSValue::decode(encodedOp2);
67 JSValue baseValue = JSValue::decode(encodedBase);
68 JSValue property = JSValue::decode(encodedProperty);
106 JSValue baseValue = JSValue::decode(encodedBase);
116 JSValue baseValue = JSValue::decode(encodedBase);
117 JSValue property = JSValue::decode(encodedProperty);
118 JSValue value = JSValue::decode(encodedValue);
174 JSValue::decode(encodedBase).put(exec, *identifier, JSValue::decode(encodedValue), slot)
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentDecoder.h 87 // Generic type decode function.
88 template<typename T> bool decode(T& t) function in class:CoreIPC::ArgumentDecoder
90 return ArgumentCoder<T>::decode(this, t);
93 // This overload exists so we can pass temporaries to decode. In the Star Trek future, it
95 template<typename T> bool decode(const T& t) function in class:CoreIPC::ArgumentDecoder
97 return decode(const_cast<T&>(t));
124 template<> inline bool ArgumentDecoder::decode(bool& n) function in class:CoreIPC::ArgumentDecoder
129 template<> inline bool ArgumentDecoder::decode(uint32_t& n) function in class:CoreIPC::ArgumentDecoder
134 template<> inline bool ArgumentDecoder::decode(uint64_t& n) function in class:CoreIPC::ArgumentDecoder
139 template<> inline bool ArgumentDecoder::decode(int32_t& n function in class:CoreIPC::ArgumentDecoder
144 template<> inline bool ArgumentDecoder::decode(int64_t& n) function in class:CoreIPC::ArgumentDecoder
149 template<> inline bool ArgumentDecoder::decode(float& n) function in class:CoreIPC::ArgumentDecoder
154 template<> inline bool ArgumentDecoder::decode(double& n) function in class:CoreIPC::ArgumentDecoder
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
ArgumentCodersMac.mm 102 static bool decode(ArgumentDecoder* decoder, RetainPtr<id>& result)
111 if (!decode(decoder, string))
118 if (!decode(decoder, color))
125 if (!decode(decoder, dictionary))
132 if (!decode(decoder, font))
139 if (!decode(decoder, number))
146 if (!decode(decoder, string))
192 bool decode(ArgumentDecoder* decoder, RetainPtr<NSAttributedString>& result)
195 if (!CoreIPC::decode(decoder, plainString))
203 if (!decoder->decode(rangeCount)
    [all...]
ArgumentCodersMac.h 38 bool decode(ArgumentDecoder*, RetainPtr<NSAttributedString>&);
42 bool decode(ArgumentDecoder*, RetainPtr<NSColor>&);
46 bool decode(ArgumentDecoder*, RetainPtr<NSDictionary>&);
50 bool decode(ArgumentDecoder*, RetainPtr<NSFont>&);
54 bool decode(ArgumentDecoder*, RetainPtr<NSNumber>&);
58 bool decode(ArgumentDecoder*, RetainPtr<NSString>&);
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetDecoderTest.java 199 * Class under test for CharBuffer decode(ByteBuffer)
208 decoder.decode(null);
214 CharBuffer out = decoder.decode(ByteBuffer.allocate(0));
219 out = decoder.decode(in);
227 out = decoder.decode(in);
246 CharBuffer buffer = decoder.decode(in);
255 out = decoder.decode(in);
261 out = decoder.decode(in);
271 decoder.decode(in);
279 out = decoder.decode(in)
    [all...]
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X962NamedCurves.java 30 Hex.decode("03188da80eb03090f67cbf20eb43a18800f4ff0afd82ff1012")),
33 Hex.decode("3045AE6FC8422f64ED579528D38120EAE12196D5"));
49 Hex.decode("03eea2bae7e1497842f2de7769cfe9c989c072ad696f48034a")),
52 Hex.decode("31a92ee2029fd10d901b113e990710f0d21ac6b6"));
68 Hex.decode("027d29778100c65a1da1783716588dce2b8b4aee8e228f1896")),
71 Hex.decode("c469684435deb378c4b65ca9591e2a5763059a2e"));
87 Hex.decode("020ffa963cdca8816ccc33b8642bedf905c3d358573d3f27fbbd3b3cb9aaaf")),
90 Hex.decode("e43bb460f0b80cc0c0b075798e948060f8321b7d"));
106 Hex.decode("0238af09d98727705120c921bb5e9e26296a3cdcf2f35757a0eafd87b830e7")),
109 Hex.decode("e8b4011604095303ca3b8099982be09fcb9ae616"))
    [all...]
  /external/webkit/Source/WebKit2/Shared/cf/
ArgumentCodersCF.h 42 bool decode(ArgumentDecoder*, RetainPtr<CFArrayRef>& result);
46 bool decode(ArgumentDecoder*, RetainPtr<CFBooleanRef>& result);
50 bool decode(ArgumentDecoder*, RetainPtr<CFDataRef>& result);
54 bool decode(ArgumentDecoder*, RetainPtr<CFDictionaryRef>& result);
58 bool decode(ArgumentDecoder*, RetainPtr<CFNumberRef>& result);
62 bool decode(ArgumentDecoder*, RetainPtr<CFStringRef>& result);
66 bool decode(ArgumentDecoder*, RetainPtr<CFURLRef>& result);
71 bool decode(ArgumentDecoder*, RetainPtr<SecCertificateRef>& result);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 21 return new BigInteger(1, Hex.decode(hex));
35 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
40 //ECPoint G = curve.decodePoint(Hex.decode("02"
42 ECPoint G = curve.decodePoint(Hex.decode("04"
61 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
66 //ECPoint G = curve.decodePoint(Hex.decode("03"
68 ECPoint G = curve.decodePoint(Hex.decode("04"
87 byte[] S = Hex.decode("000E0D4D696E6768756151750CC03A4473D03679");
92 //ECPoint G = curve.decodePoint(Hex.decode("03"
94 ECPoint G = curve.decodePoint(Hex.decode("04
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSAEncoder.java 11 BigInteger[] decode(byte[] sig) method in interface:DSAEncoder
  /external/libvpx/libvpx/examples/
decoder_tmpl.txt 34 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE
35 /* Decode the frame */
37 die_codec(&codec, "Failed to decode frame");
38 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE

Completed in 524 milliseconds

1 2 3 4 5 6 7 8 91011>>