HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 26 - 50 of 616) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/Shared/
WebGestureEvent.cpp 54 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))
OriginAndDatabases.cpp 40 bool OriginAndDatabases::decode(CoreIPC::ArgumentDecoder* decoder, OriginAndDatabases& originAndDatabases) function in class:WebKit::OriginAndDatabases
42 return decoder->decode(CoreIPC::Out(originAndDatabases.originIdentifier, originAndDatabases.originQuota, originAndDatabases.originUsage, originAndDatabases.databases));
PrintInfo.cpp 47 bool PrintInfo::decode(CoreIPC::ArgumentDecoder* decoder, PrintInfo& info) function in class:WebKit::PrintInfo
49 return decoder->decode(CoreIPC::Out(info.pageSetupScaleFactor, info.availablePaperWidth, info.availablePaperHeight));
WebPageGroupData.cpp 39 bool WebPageGroupData::decode(CoreIPC::ArgumentDecoder* decoder, WebPageGroupData& data) function in class:WebKit::WebPageGroupData
41 return decoder->decode(CoreIPC::Out(data.identifer, data.pageGroupID, data.visibleToInjectedBundle, data.visibleToHistoryClient));
WebBackForwardListItem.cpp 72 PassRefPtr<WebBackForwardListItem> WebBackForwardListItem::decode(CoreIPC::ArgumentDecoder& decoder) function in class:WebKit::WebBackForwardListItem
75 if (!decoder.decode(originalURL))
79 if (!decoder.decode(url))
83 if (!decoder.decode(title))
87 if (!decoder.decode(itemID))
91 if (!decoder.decode(data))
WebWheelEvent.cpp 83 bool WebWheelEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebWheelEvent& t) function in class:WebKit::WebWheelEvent
85 if (!WebEvent::decode(decoder, t))
87 if (!decoder->decode(t.m_position))
89 if (!decoder->decode(t.m_globalPosition))
91 if (!decoder->decode(t.m_delta))
93 if (!decoder->decode(t.m_wheelTicks))
95 if (!decoder->decode(t.m_granularity))
98 if (!decoder->decode(t.m_phase))
100 if (!decoder->decode(t.m_momentumPhase))
102 if (!decoder->decode(t.m_hasPreciseScrollingDeltas)
    [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...]
WebTouchEvent.cpp 54 bool WebTouchEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebTouchEvent& t) function in class:WebKit::WebTouchEvent
56 if (!WebEvent::decode(decoder, t))
59 return decoder->decode(CoreIPC::Out(t.m_touchPoints));
  /external/webkit/Source/WebKit2/Shared/gtk/
PlatformCertificateInfo.h 50 static bool decode(CoreIPC::ArgumentDecoder*, PlatformCertificateInfo&) function in class:WebKit::PlatformCertificateInfo
  /external/webkit/Source/WebKit2/Shared/qt/
PlatformCertificateInfo.h 49 static bool decode(CoreIPC::ArgumentDecoder*, PlatformCertificateInfo&) function in class:WebKit::PlatformCertificateInfo
  /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/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...]
ArgumentCoders.h 47 static bool decode(ArgumentDecoder* decoder, T& t) function in struct:CoreIPC::SimpleArgumentCoder
60 static bool decode(ArgumentDecoder* decoder, std::pair<T, U>& pair) function in struct:CoreIPC::ArgumentCoder
63 if (!decoder->decode(first))
67 if (!decoder->decode(second))
86 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector) function in struct:CoreIPC::VectorArgumentCoder
95 if (!decoder->decode(element))
116 static bool decode(ArgumentDecoder* decoder, Vector<T>& vector) function in struct:CoreIPC::VectorArgumentCoder
135 if (!decoder->decode(element))
155 static bool decode(ArgumentDecoder* decoder, Vector<uint8_t>& vector) function in struct:CoreIPC::ArgumentCoder
171 static bool decode(ArgumentDecoder* decoder, HashMapType& hashMap function in struct:CoreIPC::ArgumentCoder
212 static bool decode(ArgumentDecoder* decoder, CString& result) function in struct:CoreIPC::ArgumentCoder
254 static bool decode(ArgumentDecoder* decoder, String& result) function in struct:CoreIPC::ArgumentCoder
288 static bool decode(ArgumentDecoder* decoder, AtomicString& atomicString) function in struct:CoreIPC::ArgumentCoder
    [all...]
  /external/skia/src/animator/
SkBase64.h 32 Error decode(const char* src, size_t length);
40 Error decode(const void* srcPtr, size_t length, bool writeDestination);
  /external/bouncycastle/src/main/java/org/bouncycastle/util/encoders/
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);
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);
109 * decode the base 64 encoded String data writing it to the given output stream,
114 public static int decode( method in class:Base64
119 return encoder.decode(data, out);
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);
  /libcore/luni/src/test/java/libcore/java/net/
UrlEncodingTest.java 35 * URLDecoder and URI disagree on what '+' should decode to.
38 assertEquals("a b", URLDecoder.decode("a+b"));
39 assertEquals("a b", URLDecoder.decode("a+b", "UTF-8"));
50 assertEquals("a b", URLDecoder.decode("a b"));
51 assertEquals("a b", URLDecoder.decode("a b", "UTF-8"));
80 URLDecoder.decode("%");
85 URLDecoder.decode("%0");
101 URLDecoder.decode("%0g");
109 URLDecoder.decode("ab", null);
118 URLDecoder.decode("ab", "")
    [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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 38 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
40 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
42 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
  /external/webkit/Source/WebCore/platform/text/
TextCodec.h 66 String decode(const char* str, size_t length, bool flush = false) function in class:WebCore::TextCodec
69 return decode(str, length, flush, false, ignored);
72 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
  /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...]
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.cpp 62 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& updateChunk) function in class:WebKit::UpdateChunk
65 if (!decoder->decode(rect))
70 if (!decoder->decode(bitmapSharedMmemory))
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 38 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
40 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
42 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16CharsetDecoderTest.java 74 assertTrue(decoder.decode(
81 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffer
83 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 98 }), out,
89 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffer
91 assertFalse(decoder.decode(ByteBuffer.wrap(new byte[] {}), out,
97 assertFalse(decoder.decode(
104 assertSame(CoderResult.UNDERFLOW, decoder.decode(ByteBuffer
106 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 0 }), out,
  /external/bouncycastle/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...]

Completed in 816 milliseconds

12 3 4 5 6 7 8 91011>>