Searched refs:encode (Results 326 - 350 of 560) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPVariantData.h103 void encode(CoreIPC::ArgumentEncoder*) const;
/external/webkit/Source/WebKit2/Shared/
H A DWebBackForwardListItem.h65 void encode(CoreIPC::ArgumentEncoder&) const;
H A DWebContextMenuItemData.h64 void encode(CoreIPC::ArgumentEncoder*) const;
H A DWebProcessCreationParameters.h49 void encode(CoreIPC::ArgumentEncoder*) const;
H A DWebContextMenuItemData.cpp104 void WebContextMenuItemData::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::WebContextMenuItemData
106 encoder->encode(CoreIPC::In(static_cast<uint32_t>(m_type), static_cast<uint32_t>(m_action), m_title, m_checked, m_enabled, m_submenu));
/external/webkit/Source/WebKit2/Shared/gtk/
H A DWebCoreArgumentCodersGtk.cpp66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
/external/webkit/Source/WebKit2/Shared/mac/
H A DShareableSurface.h54 void encode(CoreIPC::ArgumentEncoder*) const;
H A DShareableSurface.cpp61 void ShareableSurface::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::ShareableSurface::Handle
63 encoder->encode(CoreIPC::MachPort(m_port, MACH_MSG_TYPE_MOVE_SEND));
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebCoreArgumentCodersQt.cpp65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DJSNPMethod.cpp69 return JSValue::encode(jsNPObject->callMethod(exec, jsNPMethod->npIdentifier()));
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dpreparechangelogforrevert_unittest.py113 changelog_path = self._write_tmp_file_with_contents(changelog_contents.encode("utf-8"))
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharsetTest.java552 * Test the method encode(CharBuffer) under normal condition.
556 ByteBuffer bb = c1.encode(CharBuffer.wrap("abcdefg"));
558 bb = c1.encode(CharBuffer.wrap(""));
563 * Test the method encode(CharBuffer) with an unmappable char.
567 ByteBuffer bb = c1.encode(CharBuffer.wrap("abcd\u5D14efg"));
574 * Test the method encode(CharBuffer) with null CharBuffer.
579 c.encode((CharBuffer) null);
587 * Test the method encode(CharBuffer) with null encoder.
592 c.encode(CharBuffer.wrap("hehe"));
600 * Test the method encode(Strin
[all...]
/external/nist-sip/java/gov/nist/core/
H A DGenericObjectList.java347 public String encode() { method in class:GenericObjectList
357 encoding.append(gobj.encode());
371 * Alias for the encode function above.
374 return this.encode();
460 + ((GenericObject) myobj).encode());
468 System.out.println(((GenericObject) hisobj).encode());
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPObject.java69 public abstract String encode(); method in class:SIPObject
72 * Default implemation calls encode().
74 public StringBuffer encode(StringBuffer buffer) { method in class:SIPObject
75 return buffer.append(encode());
253 ((GenericObject) myObj).encode();
399 return this.encode();
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py112 return unicode.encode(encoding)
390 s = s.encode(encoding)
393 s = s.encode(encoding)
429 def encode(self, encoding=DEFAULT_OUTPUT_ENCODING): member in class:NavigableString
430 return self.decode().encode(encoding)
632 return self.encode()
634 def encode(self, encoding=DEFAULT_OUTPUT_ENCODING, member in class:Tag
636 return self.decode(prettyPrint, indentLevel, encoding).encode(encoding)
734 return self.encode(encoding, True)
738 return self.decodeContents(prettyPrint, indentLevel).encode(encodin
[all...]
/external/v8/src/
H A Dcode-stubs.h161 // The CallFunctionStub needs to override this so it can encode whether a
187 return MinorKeyBits::encode(MinorKey()) |
188 MajorKeyBits::encode(MajorKey());
427 return OpField::encode(op_) |
428 OverwriteField::encode(overwrite_) |
429 IncludeSmiCodeField::encode(include_smi_code_) |
430 NegativeZeroField::encode(negative_zero_);
781 return InLoopBits::encode(in_loop_)
782 | FlagBits::encode(flags_)
783 | ArgcBits::encode(argc
[all...]
H A Dlithium.h50 LOperand() : value_(KindField::encode(INVALID)) { }
66 value_ = KindField::encode(kind);
168 value_ |= PolicyField::encode(policy);
180 value_ |= VirtualRegisterField::encode(id);
200 value_ |= PolicyField::encode(policy);
201 value_ |= LifetimeField::encode(lifetime);
H A Dscopeinfo.h218 value_ = ModeField::encode(mode) | IndexField::encode(index);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSURLExtras.mm69 // and included all of these characters that ICU can encode.
302 static void collectRangesThatNeedMapping(NSString *string, NSRange range, void *context, BOOL encode)
304 BOOL needsMapping = encode
329 static NSString *mapHostNames(NSString *string, BOOL encode)
333 if (encode && [string canBeConvertedToEncoding:NSASCIIStringEncoding])
338 StringRangeApplierFunction f = encode
350 NSString *mappedHostName = encode
1091 - (NSString *)_web_mapHostNameWithRange:(NSRange)range encode:(BOOL)encode makeString:(BOOL)makeString
1104 if (encode
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DGeneralizedTimeTest.java139 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
147 long new_date = ((Date) gtime.decode(gtime.encode(new Date(old_date))))
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
H A DCertificateTest.java141 ASN1Integer.getInstance().encode(
173 encoding = Certificate.ASN1.encode(certificate);
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBinaryCodec.java78 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
80 public byte[] encode(byte[] raw) { method in class:BinaryCodec
92 * @see org.apache.commons.codec.Encoder#encode(java.lang.Object)
94 public Object encode(Object raw) throws EncoderException { method in class:BinaryCodec
220 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
250 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
280 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
/external/webkit/Source/WebCore/bindings/js/
H A DJSDataViewCustom.cpp58 return JSValue::encode(jsUndefined());
62 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), view.get())));
/external/webkit/Source/WebCore/platform/image-encoders/skia/
H A DJPEGImageEncoder.cpp153 bool JPEGImageEncoder::encode(const SkBitmap& bitmap, int quality, Vector<unsigned char>* output) function in class:WebCore::JPEGImageEncoder
165 bool JPEGImageEncoder::encode(const ImageData& imageData, int quality, Vector<unsigned char>* output) function in class:WebCore::JPEGImageEncoder
/external/webkit/Source/WebKit2/Platform/mac/
H A DSharedMemoryMac.cpp57 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::SharedMemory::Handle
60 encoder->encode(CoreIPC::MachPort(m_port, MACH_MSG_TYPE_MOVE_SEND));

Completed in 1339 milliseconds

<<11121314151617181920>>