Searched defs:encode (Results 126 - 150 of 199) sorted by relevance

12345678

/external/nist-sip/java/gov/nist/core/
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();
H A DGenericObject.java704 public abstract String encode(); method in class:GenericObject
709 public StringBuffer encode(StringBuffer buffer) { method in class:GenericObject
710 return buffer.append(encode());
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());
H A DNameValueList.java89 public String encode() { method in class:NameValueList
90 return encode(new StringBuffer()).toString();
93 public StringBuffer encode(StringBuffer buffer) { method in class:NameValueList
101 gobj.encode(buffer);
116 return this.encode();
268 return ((GenericObject) val).encode();
/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);
H A DAddressImpl.java88 return that.getMatcher().match(this.encode());
163 public String encode() { method in class:AddressImpl
164 return encode(new StringBuffer()).toString();
167 public StringBuffer encode(StringBuffer buffer) { method in class:AddressImpl
181 address.encode(buffer);
H A DTelephoneNumber.java184 public String encode() { method in class:TelephoneNumber
185 return encode(new StringBuffer()).toString();
188 public StringBuffer encode(StringBuffer buffer) { method in class:TelephoneNumber
194 parameters.encode(buffer);
213 return ((GenericObject) val).encode();
/external/skia/src/utils/
H A DSkSHA1.cpp19 static void encode(uint8_t output[20], const uint32_t input[5]);
22 static void encode(uint8_t output[8], const uint64_t input);
64 encode(bits, this->byteCount << 3);
81 encode(digest.data, this->state);
250 static void encode(uint8_t output[20], const uint32_t input[5]) { function
259 static void encode(uint8_t output[8], const uint64_t input) { function
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jar ... apache.commons.codec.Encoder { public abstract byte[] encode (byte[]) throws org.apache.commons.codec. ...
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DIdentity2Test.java58 public void encode(OutputStream out) { method in class:Identity2Test.CertificateImpl
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dstringencode.cc84 size_t encode(char * buffer, size_t buflen, function in namespace:talk_base
415 // Not enough room to encode the character, or illegal character
/external/chromium_org/third_party/openssl/openssl/crypto/evp/
H A Dbio_b64.c86 int encode; member in struct:b64_struct
125 ctx->encode=0;
157 if (ctx->encode != B64_DECODE)
159 ctx->encode=B64_DECODE;
383 if (ctx->encode != B64_ENCODE)
385 ctx->encode=B64_ENCODE;
504 ctx->encode=B64_NONE;
516 if ((ret == 0) && (ctx->encode != B64_NONE)
550 else if (ctx->encode != B64_NONE && ctx->base64.num != 0)
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DDecodedInstruction.java469 public final void encode(CodeOutput out) { method in class:DecodedInstruction
470 format.encode(this, out);
H A DInstructionCodec.java29 * and encode from instances of {@link DecodedInstruction}.
40 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
55 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
72 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
91 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
109 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
125 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
143 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
161 @Override public void encode(DecodedInstruction insn, CodeOutput out) {
180 @Override public void encode(DecodedInstructio
896 public abstract void encode(DecodedInstruction insn, CodeOutput out); method in class:InstructionCodec
[all...]
/external/harfbuzz_ng/test/shaping/
H A Dhb_test_tools.py408 return '<' + u','.join ("U+%04X" % ord (u) for u in unicode (s, 'utf-8')).encode ('utf-8') + '>'
417 def encode (s): member in class:Unicode
418 return u''.join (unichr (x) for x in Unicode.parse (s)).encode ('utf-8')
455 return u' + '.join (Unicode.pretty_name (x) for x in s).encode ('utf-8')
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DChallenge.java81 public String encode() { method in class:Challenge
84 .append(authParams.encode())
H A DSIPDate.java255 public String encode() { method in class:SIPDate
H A DSIPHeaderList.java150 public String encode() { method in class:SIPHeaderList
151 return encode(new StringBuffer()).toString();
154 public StringBuffer encode(StringBuffer buffer) { method in class:SIPHeaderList
171 sipheader.encode(buffer);
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPResponse.java385 * Note -- use the encode method for formatting the message.
436 public String encode() { method in class:SIPResponse
439 retval = statusLine.encode() + super.encode();
441 retval = super.encode();
453 retval = statusLine.encode() + super.encodeSIPHeaders();
470 retval.addFirst(statusLine.encode());
527 * and you want to encode the body as a byte array for transmission.
537 slbytes = statusLine.encode().getBytes("UTF-8");
656 return this.statusLine.encode();
[all...]
H A DSIPRequest.java191 * Convert to a formatted string for pretty printing. Note that the encode method converts
437 public String encode() { method in class:SIPRequest
441 retval = requestLine.encode() + super.encode();
445 retval = super.encode();
457 retval = requestLine.encode() + super.encodeSIPHeaders();
467 * ALias for encode above.
470 return this.encode();
514 retval.addFirst(requestLine.encode());
617 * and you want to encode th
[all...]
/external/openssl/crypto/evp/
H A Dbio_b64.c86 int encode; member in struct:b64_struct
125 ctx->encode=0;
157 if (ctx->encode != B64_DECODE)
159 ctx->encode=B64_DECODE;
383 if (ctx->encode != B64_ENCODE)
385 ctx->encode=B64_ENCODE;
504 ctx->encode=B64_NONE;
516 if ((ret == 0) && (ctx->encode != B64_NONE)
550 else if (ctx->encode != B64_NONE && ctx->base64.num != 0)
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java70 * @param value String to encode
81 * @param value String to encode
82 * @param alternate use alternate encode
196 * @param obj Object to encode (should be of type String)
198 * @throws EncoderException encode parameter is not of type String
200 public Object encode(Object obj) throws EncoderException { method in class:DoubleMetaphone
202 throw new EncoderException("DoubleMetaphone encode parameter is not of type String");
210 * @param value String to encode
213 public String encode(String value) { method in class:DoubleMetaphone
/external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
H A Dexif_encoder.js35 * @param {Object} original_metadata Metadata to encode.
115 // The values for these tags will be set in ExifWriter.encode.
185 ExifEncoder.prototype.encode = function() {
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecICU.cpp360 // characters. See the declaration of TextCodec::encode for more.
514 CString TextCodecICU::encode(const UChar* characters, size_t length, UnencodableHandling handling) function in class:WTF::TextCodecICU
519 CString TextCodecICU::encode(const LChar* characters, size_t length, UnencodableHandling handling) function in class:WTF::TextCodecICU

Completed in 7642 milliseconds

12345678