Searched refs:decode (Results 1 - 25 of 436) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit2/Shared/
H A DUpdateInfo.cpp43 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))
H A DWebPageCreationParameters.cpp65 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(parameter
[all...]
H A DWebProcessCreationParameters.cpp84 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(parameter
[all...]
H A DContextMenuState.h43 static bool decode(CoreIPC::ArgumentDecoder* decoder, ContextMenuState& result) function in struct:WebKit::ContextMenuState
45 if (!decoder->decode(result.absoluteLinkURLString))
47 if (!decoder->decode(result.absoluteImageURLString))
H A DWebNavigationDataStore.h43 static bool decode(CoreIPC::ArgumentDecoder* decoder, WebNavigationDataStore& store) function in struct:WebKit::WebNavigationDataStore
45 if (!decoder->decode(store.url))
47 if (!decoder->decode(store.title))
H A DDictionaryPopupInfo.cpp48 bool DictionaryPopupInfo::decode(CoreIPC::ArgumentDecoder* decoder, DictionaryPopupInfo& result) function in class:WebKit::DictionaryPopupInfo
50 if (!decoder->decode(result.origin))
52 if (!decoder->decode(result.fontInfo))
57 if (!CoreIPC::decode(decoder, result.options))
H A DPlatformPopupMenuData.cpp68 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(dat
[all...]
H A DFontInfo.cpp44 bool FontInfo::decode(CoreIPC::ArgumentDecoder* decoder, FontInfo& fontInfo) function in class:WebKit::FontInfo
47 if (!CoreIPC::decode(decoder, fontInfo.fontAttributeDictionary))
H A DSessionState.cpp38 static bool decode(ArgumentDecoder* decoder, RefPtr<T>& item) function in struct:CoreIPC::ArgumentCoder
40 item = T::decode(*decoder);
73 bool SessionState::decode(CoreIPC::ArgumentDecoder* decoder, SessionState& state) function in class:WebKit::SessionState
75 if (!decoder->decode(state.m_list))
77 if (!decoder->decode(state.m_currentIndex))
H A DWebGestureEvent.cpp54 bool WebGestureEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebGestureEvent& t) function in class:WebKit::WebGestureEvent
56 if (!WebEvent::decode(decoder, t))
58 if (!decoder->decode(t.m_position))
60 if (!decoder->decode(t.m_globalPosition))
/external/webkit/Source/WebKit2/Shared/mac/
H A DArgumentCodersMac.h38 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>&);
H A DAttributedString.mm43 bool AttributedString::decode(CoreIPC::ArgumentDecoder* decoder, AttributedString& attributedString)
46 if (!decoder->decode(isNull))
50 return CoreIPC::decode(decoder, attributedString.string);
/external/apache-http/src/org/apache/commons/codec/
H A DBinaryDecoder.java37 * the decode process.
39 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
H A DDecoder.java40 * 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
H A DStringDecoder.java37 String decode(String pString) throws DecoderException; method in interface:StringDecoder
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPlugin.cpp44 bool Plugin::Parameters::decode(CoreIPC::ArgumentDecoder* decoder, Parameters& parameters) function in class:WebKit::Plugin::Parameters
47 if (!decoder->decode(urlString))
52 if (!decoder->decode(parameters.names))
54 if (!decoder->decode(parameters.values))
56 if (!decoder->decode(parameters.mimeType))
58 if (!decoder->decode(parameters.loadManually))
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DPluginProcessCreationParameters.cpp49 bool PluginProcessCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, PluginProcessCreationParameters& result) function in class:WebKit::PluginProcessCreationParameters
51 if (!decoder->decode(result.pluginPath))
55 if (!decoder->decode(result.parentProcessName))
57 if (!decoder->decode(result.acceleratedCompositingPort))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DEncoder.java7 * 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
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArgumentCoder.h42 static bool decode(ArgumentDecoder* decoder, T& t) function in struct:CoreIPC::ArgumentCoder
44 return T::decode(decoder, t);
H A DDataReference.cpp39 bool DataReference::decode(ArgumentDecoder* decoder, DataReference& dataReference) function in class:CoreIPC::DataReference
/external/webkit/Source/WebKit2/Shared/cf/
H A DArgumentCodersCF.h42 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/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_decrypt_key.c43 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[
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURLDecoderTest.java38 * @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/
H A DCertFactoryTestData.java298 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"));
/external/dropbear/libtomcrypt/src/pk/dsa/
H A Ddsa_decrypt_key.c37 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[
[all...]

Completed in 443 milliseconds

1234567891011>>