HomeSort by relevance Sort by last modified time
    Searched full:encode (Results 126 - 150 of 1967) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/address/
GenericURI.java 81 /** Encode the URI.
84 public String encode() { method in class:GenericURI
88 public StringBuffer encode(StringBuffer buffer) { method in class:GenericURI
92 /** Encode this URI.
96 return this.encode();
Authority.java 58 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();
  /external/nist-sip/java/gov/nist/javax/sip/header/
To.java 75 * Encode the header into a String.
80 public String encode() { method in class:To
85 * Encode the header content into a String.
98 address.encode(buffer);
105 parameters.encode(buffer);
RecordRoute.java 70 /** Encode into canonical form.
81 address.encode(buffer);
88 this.parameters.encode(buffer);
  /frameworks/base/core/java/android/util/
Base64InputStream.java 57 * @param encode true to encode, false to decode
61 public Base64InputStream(InputStream in, int flags, boolean encode) {
65 if (encode) {
134 * decode/encode it into the empty coder.output, and reset the
  /libcore/luni/src/main/java/java/security/
Certificate.java 38 * the data to encode must be that identified by {@link #getFormat()} and
39 * encoded by {@link #encode(OutputStream)}.
47 * @see #encode(OutputStream)
58 * the {@code OutputStream} to encode this certificate to.
65 public void encode(OutputStream stream) throws KeyException, IOException; method in interface:Certificate
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 31 * <p>Use {@link #encode(CharBuffer)} to encode an entire {@code CharBuffer} to a
32 * new {@code ByteBuffer}, or {@link #encode(CharBuffer, ByteBuffer, boolean)} for more
36 * <li>Invoke {@link #encode(CharBuffer, ByteBuffer, boolean) encode} with the {@code endOfInput}
39 * <p>The {@link #encode(CharBuffer, ByteBuffer, boolean) encode} method will
46 * <li>Invoke {@link #encode(CharBuffer, ByteBuffer, boolean) encode} for the last time with
93 // internal status indicates encode(CharBuffer) operation is finishe
274 public final ByteBuffer encode(CharBuffer in) throws CharacterCodingException { method in class:CharsetEncoder
402 public final CoderResult encode(CharBuffer in, ByteBuffer out, boolean endOfInput) { method in class:CharsetEncoder
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
Soundex.java 40 * means do not encode.
52 * means do not encode.
126 * Object to encode
134 public Object encode(Object pObject) throws EncoderException { method in class:Soundex
136 throw new EncoderException("Parameter supplied to Soundex encode is not of type java.lang.String");
145 * A String object to encode
150 public String encode(String pString) { method in class:Soundex
160 * the cleaned working string to encode (in upper case).
162 * the character position to encode
244 * String to encode using the Soundex algorith
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
encode.h 0 // encode.h
17 // Class to encode and decoder an fst.
30 enum EncodeType { ENCODE = 1, DECODE = 2 };
32 // Identifies stream data as an encode table (and its endianity)
39 // stores both the Tuple of encode labels and weights to a unique
69 // Hash function for EncodeTabe Tuples. Based on the encode flags
111 // Given an arc encode either input/ouptut labels or input/costs or both
112 Label Encode(const A &arc) {
126 // Given an encode arc Label decode back to input/output labels and costs
154 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
NumberPrototype.cpp 114 return JSValue::encode(jsString(exec, UString::number(x)));
122 return JSValue::encode(jsString(exec, UString(buffer, length)));
148 return JSValue::encode(jsString(exec, UString::number(x)));
157 return JSValue::encode(jsString(exec, UString(buffer, length)));
184 return JSValue::encode(jsString(exec, UString::number(x)));
188 return JSValue::encode(jsString(exec, UString::number(x)));
200 return JSValue::encode(jsString(exec, UString(buffer, length)));
220 return JSValue::encode(jsString(exec, v.toString(exec)));
230 return JSValue::encode(globalData->smallStrings.singleCharacterString(globalData, digits[x]));
245 return JSValue::encode(jsString(exec, UString::number(x)))
    [all...]
RegExpPrototype.cpp 66 return JSValue::encode(asRegExpObject(thisValue)->test(exec));
74 return JSValue::encode(asRegExpObject(thisValue)->exec(exec));
94 return JSValue::encode(jsUndefined());
100 return JSValue::encode(jsUndefined());
112 return JSValue::encode(jsUndefined());
120 return JSValue::encode(jsNontrivialString(exec, "//"));
140 return JSValue::encode(jsMakeNontrivialString(exec, "/", source.length() ? source : UString("(?:)"), postfix));
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 161 // TableGen'erated getBinaryCodeForInstr() function to encode any
163 // each operand it needs to encode. Thus, any of the new encoder
318 // If there is a non-zero immediate offset, encode it.
478 llvm_unreachable("Unable to encode MachineOperand!");
743 // Encode Rd.
746 // Encode imm16 as imm4:imm12
758 // Encode Rd.
761 // Encode imm16 as imm4:imm1, same as movw above.
781 // Encode Rd.
784 // Encode so_imm
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
CertificateListTest.java 75 ASN1GeneralizedTime.getInstance().encode(new Date()));
91 //ASN1OctetString.getInstance().encode(
92 GeneralNames.ASN1.encode(
121 ASN1Integer.getInstance().encode(
140 encoding = CertificateList.ASN1.encode(certificateList);
166 byte[] encoding = CertificateList.ASN1.encode(cl);
174 encoding = CertificateList.ASN1.encode(cl);
  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 64 * Encode the list in semicolon separated form.
69 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();
  /external/webkit/Source/WebCore/platform/text/
TextEncoding.cpp 74 CString TextEncoding::encode(const UChar* characters, size_t length, UnencodableHandling handling) const function in class:WebCore::TextEncoding
84 // It's a little strange to do it inside the encode function.
85 // Perhaps normalization should be an explicit step done before calling encode.
107 return newTextCodec(*this)->encode(source, sourceLength, handling);
111 return newTextCodec(*this)->encode(reinterpret_cast<const UChar *>(str.utf16()), str.length(), handling);
117 return newTextCodec(*this)->encode(characters, length, handling);
127 return newTextCodec(*this)->encode(UTF16Normalized.get(), UTF16Length, handling);
131 return textCodec.get() ? textCodec->encode(characters, length, handling) : CString();
135 return textCodec.get() ? textCodec->encode(characters, length, handling) : CString();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLDecoderTest.java 45 URLEncoder.encode(URL)).equals(URL));
47 URLEncoder.encode(URL2)).equals(URL2));
49 URLEncoder.encode(URL3)).equals(URL3));
  /external/dropbear/libtomcrypt/src/pk/asn1/der/set/
der_encode_set.c 15 ASN.1 DER, Encode a SET, Tom St Denis
60 Encode a SET type
61 @param list The list of items to encode
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_v1_5_encode.c 20 /*! \brief PKCS #1 v1.5 encode.
22 * \param msg The data to encode
23 * \param msglen The length of the data to encode (octets)
  /external/dropbear/libtomcrypt/testprof/
modes_test.c 41 /* encode the block */
63 /* encode the block */
86 /* encode the block */
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PAssertedIdentity.java 72 /** Encode into canonical form.
80 retval.append(address.encode());
87 retval.append(COMMA + this.parameters.encode());
PCalledPartyID.java 67 /** Encode into canonical form.
75 retval.append(address.encode());
81 retval.append(SEMICOLON + this.parameters.encode());
Path.java 66 /** Encode into canonical form.
74 retval.append(address.encode());
80 retval.append(SEMICOLON + this.parameters.encode());
ServiceRoute.java 67 /** Encode into canonical form.
75 retval.append(address.encode());
81 retval.append(SEMICOLON + this.parameters.encode());
  /external/webkit/Source/WebCore/bindings/js/
JSEventSourceCustom.cpp 54 return JSValue::encode(JSValue());
65 return JSValue::encode(JSValue());
68 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), eventSource.release())));
JSSharedWorkerCustom.cpp 67 return JSValue::encode(JSValue());
75 return JSValue::encode(JSValue());
78 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), worker.release())));

Completed in 2251 milliseconds

1 2 3 4 56 7 8 91011>>