Searched refs:encode (Results 76 - 100 of 560) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/text/
H A DTextCodecLatin1.h39 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
H A DTextCodecUserDefined.h39 virtual CString encode(const UChar*, size_t length, UnencodableHandling);
/external/webkit/Source/WebKit2/Shared/
H A DFontInfo.h41 void encode(CoreIPC::ArgumentEncoder*) const;
H A DWebKeyboardEvent.cpp48 void WebKeyboardEvent::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::WebKeyboardEvent
50 WebEvent::encode(encoder);
52 encoder->encode(CoreIPC::In(m_text, m_unmodifiedText, m_keyIdentifier, m_windowsVirtualKeyCode, m_nativeVirtualKeyCode, m_macCharCode));
53 encoder->encode(CoreIPC::In(m_isAutoRepeat, m_isKeypad, m_isSystemKey));
H A DWebPageGroupData.h39 void encode(CoreIPC::ArgumentEncoder*) const;
H A DUserMessageCoders.h75 encoder->encode(static_cast<uint64_t>(array->size()));
77 encoder->encode(Owner(array->at(i)));
83 encoder->encode(static_cast<uint64_t>(map.size()));
88 encoder->encode(it->first);
89 encoder->encode(Owner(it->second.get()));
95 encoder->encode(string->string());
105 encoder->encode(doubleObject->value());
110 encoder->encode(uint64Object->value());
115 encoder->encode(booleanObject->value());
120 encoder->encode(urlObjec
[all...]
/external/webkit/Source/WebKit2/Shared/gtk/
H A DPlatformCertificateInfo.h46 void encode(CoreIPC::ArgumentEncoder*) const function in class:WebKit::PlatformCertificateInfo
/external/webkit/Source/WebKit2/Shared/mac/
H A DAttributedString.h41 void encode(CoreIPC::ArgumentEncoder*) const;
H A DLayerTreeContextMac.mm43 void LayerTreeContext::encode(CoreIPC::ArgumentEncoder* encoder) const
45 encoder->encode(contextID);
H A DWebCoreArgumentCodersMac.mm41 encoder->encode(requestIsPresent);
47 encode(encoder, dictionary.get());
76 encoder->encode(responseIsPresent);
82 encode(encoder, dictionary.get());
116 encoder->encode(errorIsNull);
124 encoder->encode(domain);
127 encoder->encode(code);
140 encoder->encode(stringUserInfoMap);
144 encoder->encode(PlatformCertificateInfo((CFArrayRef)peerCertificateChain));
/external/webkit/Source/WebKit2/Shared/qt/
H A DPlatformCertificateInfo.h45 void encode(CoreIPC::ArgumentEncoder*) const function in class:WebKit::PlatformCertificateInfo
/external/webkit/Source/WebKit2/Shared/win/
H A DLayerTreeContextWin.cpp43 void LayerTreeContext::encode(CoreIPC::ArgumentEncoder*) const function in class:WebKit::LayerTreeContext
H A DWebCoreArgumentCodersWin.cpp44 encoder->encode(requestIsPresent);
50 encode(encoder, dictionary.get());
85 encoder->encode(responseIsPresent);
91 encode(encoder, dictionary.get());
124 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
127 encoder->encode(WebKit::PlatformCertificateInfo(resourceError.certificate()));
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAuthority.java58 public String encode() { method in class:Authority
59 return encode(new StringBuffer()).toString();
62 public StringBuffer encode(StringBuffer buffer) { method in class:Authority
64 userInfo.encode(buffer);
66 hostPort.encode(buffer);
68 hostPort.encode(buffer);
234 return this.hostPort.encode().hashCode();
H A DTelURLImpl.java158 return this.scheme + ":" + telephoneNumber.encode();
161 public String encode() { method in class:TelURLImpl
162 return encode(new StringBuffer()).toString();
165 public StringBuffer encode(StringBuffer buffer) { method in class:TelURLImpl
167 telephoneNumber.encode(buffer);
/external/chromium/sdch/open-vcdiff/src/
H A Dvcdiff_test.sh45 # vcdiff with three arguments but without "encode" or "decode"
55 encode -dictionary $DICTIONARY_FILE \
75 encode -dictionary $DICTIONARY_FILE \
95 encode -dictionary $DICTIONARY_FILE \
114 encode -dictionary $DICTIONARY_FILE \
158 encode -dictionary $TEST_TMPDIR/nonexistent_file \
167 encode -dictionary $DICTIONARY_FILE \
186 encode -dictionary $TEST_TMPDIR/infinite_loop1 \
197 encode -dictionary $DICTIONARY_FILE \
233 encode
[all...]
/external/elfutils/libelf/
H A Dversion_xlate.h25 elf_cvt_Verdef (void *dest, const void *src, size_t len, int encode) argument
60 if (! encode)
87 if (encode)
93 if (! encode)
99 if (encode)
119 elf_cvt_Verneed (void *dest, const void *src, size_t len, int encode) argument
154 if (! encode)
179 if (encode)
188 if (! encode)
194 if (encode)
[all...]
/external/apache-http/src/org/apache/commons/codec/net/
H A DBCodec.java102 public String encode(final String value, final String charset) throws EncoderException { method in class:BCodec
123 public String encode(String value) throws EncoderException { method in class:BCodec
127 return encode(value, getDefaultCharset());
163 public Object encode(Object value) throws EncoderException { method in class:BCodec
167 return encode((String) value);
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A Diri2uri.py53 def encode(c): function
60 retval = "".join(["%%%2X" % ord(o) for o in c.encode('utf-8')])
67 passed in a unicode strings. That is, do not utf-8 encode
71 authority = authority.encode('idna')
73 # 1. encode as utf-8
74 # 2. then %-encode each octet of that utf-8
76 uri = "".join([encode(c) for c in uri])
106 self.assertNotEqual("/fred?bar=%E2%98%9A#%E2%98%84", iri2uri(u"/fred?bar=\N{BLACK LEFT POINTING INDEX}#\N{COMET}".encode('utf-8')))
/external/webkit/Source/JavaScriptCore/runtime/
H A DMathObject.cpp120 return JSValue::encode(jsNumber(fabs(exec->argument(0).toNumber(exec))));
125 return JSValue::encode(jsDoubleNumber(acos(exec->argument(0).toNumber(exec))));
130 return JSValue::encode(jsDoubleNumber(asin(exec->argument(0).toNumber(exec))));
135 return JSValue::encode(jsDoubleNumber(atan(exec->argument(0).toNumber(exec))));
142 return JSValue::encode(jsDoubleNumber(atan2(arg0, arg1)));
147 return JSValue::encode(jsNumber(ceil(exec->argument(0).toNumber(exec))));
152 return JSValue::encode(jsDoubleNumber(cos(exec->argument(0).toNumber(exec))));
157 return JSValue::encode(jsDoubleNumber(exp(exec->argument(0).toNumber(exec))));
162 return JSValue::encode(jsNumber(floor(exec->argument(0).toNumber(exec))));
167 return JSValue::encode(jsDoubleNumbe
[all...]
H A DStringConstructor.cpp45 return JSValue::encode(jsSingleCharacterString(exec, exec->argument(0).toUInt32(exec)));
46 return JSValue::encode(stringFromCharCodeSlowCase(exec));
72 return JSValue::encode(new (exec) StringObject(exec, globalObject->stringObjectStructure()));
73 return JSValue::encode(new (exec) StringObject(exec, globalObject->stringObjectStructure(), exec->argument(0).toString(exec)));
86 return JSValue::encode(jsEmptyString(exec));
87 return JSValue::encode(jsString(exec, exec->argument(0).toString(exec)));
H A DDatePrototype.cpp464 return JSValue::encode(jsNontrivialString(exec, "Invalid Date"));
469 return JSValue::encode(jsMakeNontrivialString(exec, date, " ", time));
482 return JSValue::encode(jsNontrivialString(exec, "Invalid Date"));
487 return JSValue::encode(jsMakeNontrivialString(exec, date, " ", time));
500 return JSValue::encode(jsNontrivialString(exec, "Invalid Date"));
506 return JSValue::encode(jsNontrivialString(exec, buffer));
519 return JSValue::encode(jsNontrivialString(exec, "Invalid Date"));
522 return JSValue::encode(jsNontrivialString(exec, date));
535 return JSValue::encode(jsNontrivialString(exec, "Invalid Date"));
538 return JSValue::encode(jsNontrivialStrin
[all...]
/external/skia/src/animator/
H A DSkBase64.cpp23 static const char encode[] = variable
133 *dst++ = encode[a];
134 *dst++ = encode[b];
135 *dst++ = encode[c];
136 *dst++ = encode[d];
148 *dst++ = encode[a >> 2];
149 *dst++ = encode[(k1 | a << 4) & 0x3F];
150 *dst++ = encode[k2];
151 *dst++ = encode[EncodePad];
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DArgumentCoders.h43 static void encode(ArgumentEncoder* encoder, const T& t) function in struct:CoreIPC::SimpleArgumentCoder
54 static void encode(ArgumentEncoder* encoder, const std::pair<T, U>& pair) function in struct:CoreIPC::ArgumentCoder
56 encoder->encode(pair.first);
57 encoder->encode(pair.second);
79 static void encode(ArgumentEncoder* encoder, const Vector<T>& vector) function in struct:CoreIPC::VectorArgumentCoder
83 encoder->encode(vector[i]);
108 static void encode(ArgumentEncoder* encoder, const Vector<T>& vector) function in struct:CoreIPC::VectorArgumentCoder
113 encoder->encode(vector[i]);
150 static void encode(ArgumentEncoder* encoder, const Vector<uint8_t>& vector) function in struct:CoreIPC::ArgumentCoder
164 static void encode(ArgumentEncode function in struct:CoreIPC::ArgumentCoder
199 static void encode(ArgumentEncoder* encoder, const CString& string) function in struct:CoreIPC::ArgumentCoder
241 static void encode(ArgumentEncoder* encoder, const String& string) function in struct:CoreIPC::ArgumentCoder
283 static void encode(ArgumentEncoder* encoder, const AtomicString& atomicString) function in struct:CoreIPC::ArgumentCoder
[all...]
/external/webkit/Source/WebKit2/Shared/cf/
H A DArgumentCodersCF.cpp91 static void encode(ArgumentEncoder* encoder, CFTypeRef typeRef) function in namespace:CoreIPC
98 encode(encoder, static_cast<CFArrayRef>(typeRef));
101 encode(encoder, static_cast<CFBooleanRef>(typeRef));
104 encode(encoder, static_cast<CFDataRef>(typeRef));
107 encode(encoder, static_cast<CFDictionaryRef>(typeRef));
112 encode(encoder, static_cast<CFNumberRef>(typeRef));
115 encode(encoder, static_cast<CFStringRef>(typeRef));
118 encode(encoder, static_cast<CFURLRef>(typeRef));
122 encode(encoder, (SecCertificateRef)typeRef);
213 void encode(ArgumentEncode function in namespace:CoreIPC
248 void encode(ArgumentEncoder* encoder, CFBooleanRef boolean) function in namespace:CoreIPC
263 void encode(ArgumentEncoder* encoder, CFDataRef data) function in namespace:CoreIPC
281 void encode(ArgumentEncoder* encoder, CFDictionaryRef dictionary) function in namespace:CoreIPC
329 void encode(ArgumentEncoder* encoder, CFNumberRef number) function in namespace:CoreIPC
410 void encode(ArgumentEncoder* encoder, CFStringRef string) function in namespace:CoreIPC
450 void encode(ArgumentEncoder* encoder, CFURLRef url) function in namespace:CoreIPC
484 void encode(ArgumentEncoder* encoder, SecCertificateRef certificate) function in namespace:CoreIPC
[all...]

Completed in 2526 milliseconds

1234567891011>>