Searched defs:encode (Results 101 - 125 of 206) sorted by relevance

123456789

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DRequestLine.java72 public String encode() { method in class:RequestLine
73 return encode(new StringBuffer()).toString();
76 public StringBuffer encode(StringBuffer buffer) { method in class:RequestLine
82 uri.encode(buffer);
226 * Changed the encode() and encodeBody() methods of SIP headers and basic classes to make them use the same StringBuffer instance during the encoding phase.
H A DStatusLine.java74 return sl.matchExpression.match(this.encode());
115 public String encode() { method in class:StatusLine
H A DTo.java80 public String encode() { method in class:To
98 address.encode(buffer);
105 parameters.encode(buffer);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHuffman.java89 void encode(byte[] data, OutputStream out) throws IOException { method in class:Huffman
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBase64.java179 * @param binaryData binary data to encode
190 * @param binaryData binary data to encode
232 * @param binaryData Array containing binary data to encode.
504 * @param pObject Object to encode
510 public Object encode(Object pObject) throws EncoderException { method in class:Base64
513 "Parameter supplied to Base64 encode is not a byte[]");
515 return encode((byte[]) pObject);
525 public byte[] encode(byte[] pArray) { method in class:Base64
/external/apache-http/src/org/apache/commons/codec/language/
H A DMetaphone.java357 * @param pObject Object to encode
363 public Object encode(Object pObject) throws EncoderException { method in class:Metaphone
365 throw new EncoderException("Parameter supplied to Metaphone encode is not of type java.lang.String");
373 * @param pString String object to encode
376 public String encode(String pString) { method in class:Metaphone
/external/apache-http/src/org/apache/http/impl/auth/
H A DDigestScheme.java93 * @see #encode(byte[])
319 String tmp2=encode(md5Helper.digest(EncodingUtils.getBytes(a1, charset)));
330 String md5a1 = encode(md5Helper.digest(EncodingUtils.getBytes(a1, charset)));
340 String md5a2 = encode(md5Helper.digest(EncodingUtils.getAsciiBytes(a2)));
373 encode(md5Helper.digest(EncodingUtils.getAsciiBytes(serverDigestValue)));
456 private static String encode(byte[] binaryData) { method in class:DigestScheme
485 cnonce = encode(md5Helper.digest(EncodingUtils.getAsciiBytes(cnonce)));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1ObjectIdentifier.java334 void encode( method in class:ASN1ObjectIdentifier
H A DASN1Set.java493 throw new IllegalArgumentException("cannot encode object added to SET");
548 abstract void encode(ASN1OutputStream out) method in class:ASN1Set
H A DDERBitString.java217 void encode( method in class:DERBitString
H A DDERExternal.java130 * @see org.bouncycastle.asn1.ASN1Primitive#encode(org.bouncycastle.asn1.DEROutputStream)
132 void encode(ASN1OutputStream out) method in class:DERExternal
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
H A Dcookie.py59 # build encode/decode functions to safely pack away values
64 def encode(s, sublist = _encode): function
66 decode = lambda s: encode(s, _decode)
79 secret = secret.encode('utf8')
145 content = content.encode('utf8')
146 timestamp = timestamp.encode('utf8')
304 content.append("%s=%s" % (encode(k), encode(v)))
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifResourceEncoder.java44 public boolean encode(Resource<GifDrawable> resource, OutputStream os) { method in class:GifResourceEncoder
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsCollectionTest.java474 private static String encode(String str) { method in class:MapsCollectionTest
476 return BaseEncoding.base64().encode(str.getBytes(Charsets.UTF_8.name()));
515 map.put(entry.getKey(), encode(entry.getValue()));
534 map.put(entry.getKey(), encode(entry.getValue()));
558 map.put(entry.getKey(), encode(entry.getValue()));
575 map.put(entry.getKey(), encode(entry.getValue()));
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DPunycode.java130 public static StringBuilder encode(CharSequence src, boolean[] caseFlags) throws StringPrepParseException{ method in class:Punycode
/external/jetty/src/java/org/eclipse/jetty/util/
H A DUrlEncoded.java101 public String encode() method in class:UrlEncoded
103 return encode(ENCODING,false);
109 public String encode(String charset) method in class:UrlEncoded
111 return encode(charset,false);
119 public synchronized String encode(String charset, boolean equalsForNullValue) method in class:UrlEncoded
121 return encode(this,charset,equalsForNullValue);
129 public static String encode(MultiMap map, String charset, boolean equalsForNullValue) method in class:UrlEncoded
/external/jetty/src/java/org/eclipse/jetty/util/resource/
H A DFileResource.java347 * @param uri URI to encode.
351 public String encode(String uri) method in class:FileResource
H A DJarFileResource.java379 * @param uri URI to encode.
383 public String encode(String uri) method in class:JarFileResource
/external/lzma/CPP/7zip/Common/
H A DCreateCoder.cpp160 bool encode, bool onlyCoder)
169 if (encode)
201 if (encode)
259 bool encode)
265 filter, coder, coder2, encode, true);
271 CMyComPtr<ICompressCoder> &coder, bool encode)
278 coder, coder2, encode);
285 bool encode)
292 filter, coder, coder2, encode, false);
154 CreateCoder( DECL_EXTERNAL_CODECS_LOC_VARS CMethodId methodId, CMyComPtr<ICompressFilter> &filter, CMyComPtr<ICompressCoder> &coder, CMyComPtr<ICompressCoder2> &coder2, bool encode, bool onlyCoder) argument
254 CreateCoder( DECL_EXTERNAL_CODECS_LOC_VARS CMethodId methodId, CMyComPtr<ICompressCoder> &coder, CMyComPtr<ICompressCoder2> &coder2, bool encode) argument
268 CreateCoder( DECL_EXTERNAL_CODECS_LOC_VARS CMethodId methodId, CMyComPtr<ICompressCoder> &coder, bool encode) argument
281 CreateFilter( DECL_EXTERNAL_CODECS_LOC_VARS CMethodId methodId, CMyComPtr<ICompressFilter> &filter, bool encode) argument
/external/lzma/CPP/7zip/Compress/
H A DCodecExports.cpp33 static HRESULT SetClassID(CMethodId id, bool encode, PROPVARIANT *value) argument
38 if (encode)
43 static HRESULT FindCodecClassId(const GUID *clsID, UInt32 isCoder2, bool isFilter, bool &encode, int &index) argument
50 encode = (clsID->Data3 != kDecodeId);
57 if (id != codec.Id || encode && !codec.CreateEncoder || !encode && !codec.CreateDecoder)
68 STDAPI CreateCoder2(bool encode, UInt32 index, const GUID *iid, void **outObject) argument
79 if (encode)
109 bool encode;
111 HRESULT res = FindCodecClassId(clsid, isCoder2, isFilter, encode, codecInde
[all...]
/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java69 public String encode() { method in class:DuplicateNameValueList
70 return encode(new StringBuffer()).toString();
73 public StringBuffer encode(StringBuffer buffer) { method in class:DuplicateNameValueList
81 gobj.encode(buffer);
96 return this.encode();
227 return ((GenericObject) val).encode();
H A DHost.java119 public String encode() { method in class:Host
120 return encode(new StringBuffer()).toString();
123 public StringBuffer encode(StringBuffer buffer) { method in class:Host
H A DNameValue.java158 public String encode() { method in class:NameValue
159 return encode(new StringBuffer()).toString();
162 public StringBuffer encode(StringBuffer buffer) { method in class:NameValue
167 gv.encode(buffer);
172 buffer.append(name).append(separator).append(gvlist.encode());
194 gv.encode(buffer);
198 buffer.append(gvlist.encode());
282 return this.encode().toLowerCase().hashCode();
/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);

Completed in 651 milliseconds

123456789