Searched refs:encode (Results 101 - 125 of 560) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/commons/codec/net/
H A DQuotedPrintableCodec.java110 * byte to encode
210 public byte[] encode(byte[] bytes) { method in class:QuotedPrintableCodec
250 public String encode(String pString) throws EncoderException { method in class:QuotedPrintableCodec
255 return encode(pString, getDefaultCharset());
316 public Object encode(Object pObject) throws EncoderException { method in class:QuotedPrintableCodec
320 return encode((byte[]) pObject);
322 return encode((String) pObject);
381 public String encode(String pString, String charset) throws UnsupportedEncodingException { method in class:QuotedPrintableCodec
385 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII);
H A DURLCodec.java191 public byte[] encode(byte[] bytes) { method in class:URLCodec
220 public String encode(String pString, String charset) method in class:URLCodec
226 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII);
240 public String encode(String pString) throws EncoderException { method in class:URLCodec
245 return encode(pString, getDefaultCharset());
306 public Object encode(Object pObject) throws EncoderException { method in class:URLCodec
310 return encode((byte[])pObject);
312 return encode((String)pObject);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DBERSet.java46 void encode( method in class:BERSet
66 super.encode(out);
H A DASN1Object.java42 abstract void encode(DEROutputStream out) throws IOException; method in class:ASN1Object
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptEncoding.java94 return encode(new StringBuffer()).toString();
102 buffer.append(SEMICOLON).append(parameters.encode());
H A DExtensionHeaderImpl.java90 encodedHdr = this.encode();
107 public String encode() { method in class:ExtensionHeaderImpl
H A DExtensionHeaderList.java62 public String encode() { method in class:ExtensionHeaderList
67 retval.append(eh.encode());
H A DInReplyTo.java92 return callId.encode();
100 return callId.encode();
H A DRecordRoute.java81 address.encode(buffer);
88 this.parameters.encode(buffer);
H A DRouteList.java62 public String encode() { method in class:RouteList
64 else return super.encode();
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
H A DReferredBy.java59 retval += address.encode();
65 retval += SEMICOLON + parameters.encode();
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DServiceRoute.java75 retval.append(address.encode());
81 retval.append(SEMICOLON + this.parameters.encode());
/external/webkit/Source/WebCore/bindings/js/
H A DJSFloat32ArrayCustom.cpp57 return JSValue::encode(JSValue());
58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSInt16ArrayCustom.cpp57 return JSValue::encode(JSValue());
58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSInt32ArrayCustom.cpp57 return JSValue::encode(JSValue());
58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSInt8ArrayCustom.cpp58 return JSValue::encode(JSValue());
59 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSUint16ArrayCustom.cpp57 return JSValue::encode(JSValue());
58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSUint32ArrayCustom.cpp57 return JSValue::encode(JSValue());
58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
H A DJSUint8ArrayCustom.cpp57 return JSValue::encode(JSValue());
58 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), array.get())));
/external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
H A DMachPort.h49 void encode(ArgumentEncoder* encoder) const function in class:CoreIPC::MachPort
51 encoder->encode(Attachment(m_port, m_disposition));
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPVariantData.cpp122 void NPVariantData::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::NPVariantData
124 encoder->encode(m_type);
131 encoder->encode(boolValue());
134 encoder->encode(int32Value());
137 encoder->encode(doubleValue());
140 encoder->encode(stringValue());
143 encoder->encode(localNPObjectIDValue());
146 encoder->encode(remoteNPObjectIDValue());
/external/webkit/Source/WebKit2/Shared/
H A DSecurityOriginData.cpp38 void SecurityOriginData::encode(CoreIPC::ArgumentEncoder* encoder) const function in class:WebKit::SecurityOriginData
40 encoder->encode(CoreIPC::In(protocol, host, port));
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DISOCharsetEncoderTest.java96 encoder.encode(CharBuffer.wrap("\ud800\udc00"));
102 assertTrue(encoder.encode(CharBuffer.wrap("\ud800"), out, true)
107 assertSame(CoderResult.UNDERFLOW, encoder.encode(CharBuffer
109 assertTrue(encoder.encode(CharBuffer.wrap("\udc00"), out, true)
/external/clang/test/PCH/
H A Dobjc_exprs.h7 typedef typeof(@encode(int)) objc_encode;
/external/webkit/Source/WebCore/html/
H A DFormDataList.cpp35 CString cstr = m_encoding.encode(s.characters(), s.length(), EntitiesForUnencodables);

Completed in 607 milliseconds

1234567891011>>