HomeSort by relevance Sort by last modified time
    Searched refs:encode (Results 51 - 75 of 704) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/doclava/src/com/google/doclava/
CodeTagInfo.java 20 private static String encode(String t) { method in class:CodeTagInfo
30 //super("@code", "@code", encode(text), sp);
  /external/nist-sip/java/gov/nist/javax/sip/address/
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();
TelURLImpl.java 158 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);
  /external/chromium_org/sdch/open-vcdiff/src/
vcdiff_test.sh 45 # vcdiff with three arguments but without "encode" or "decode"
55 encode -dictionary $DICTIONARY_FILE \
58 || { echo "Encode with three arguments failed"; \
75 encode -dictionary $DICTIONARY_FILE \
78 || { echo "Encode using stdin/stdout failed"; \
95 encode -dictionary $DICTIONARY_FILE \
98 || { echo "Encode with mixed arguments failed"; \
114 encode -dictionary $DICTIONARY_FILE \
117 || { echo "Encode with mixed arguments failed"; \
158 encode -dictionary $TEST_TMPDIR/nonexistent_file
    [all...]
  /external/elfutils/0.153/libelf/
version_xlate.h 58 elf_cvt_Verdef (void *dest, const void *src, size_t len, int encode)
62 them one after the other. The ENCODE parameter specifies whether
93 if (! encode)
120 if (encode)
126 if (! encode)
131 /* Encode now if necessary. */
132 if (encode)
152 elf_cvt_Verneed (void *dest, const void *src, size_t len, int encode)
156 them one after the other. The ENCODE parameter specifies whether
187 if (! encode)
    [all...]
gnuhash_xlate.h 58 elf_cvt_gnuhash (void *dest, const void *src, size_t len, int encode)
74 Elf32_Word bitmask_words = encode ? src32[2] : dest32[2];
  /external/apache-http/src/org/apache/commons/codec/net/
BCodec.java 107 public String encode(final String value, final String charset) throws EncoderException { method in class:BCodec
128 public String encode(String value) throws EncoderException { method in class:BCodec
132 return encode(value, getDefaultCharset());
168 public Object encode(Object value) throws EncoderException { method in class:BCodec
172 return encode((String) value);
QuotedPrintableCodec.java 115 * byte to encode
215 public byte[] encode(byte[] bytes) { method in class:QuotedPrintableCodec
255 public String encode(String pString) throws EncoderException { method in class:QuotedPrintableCodec
260 return encode(pString, getDefaultCharset());
321 public Object encode(Object pObject) throws EncoderException { method in class:QuotedPrintableCodec
325 return encode((byte[]) pObject);
327 return encode((String) pObject);
386 public String encode(String pString, String charset) throws UnsupportedEncodingException { method in class:QuotedPrintableCodec
390 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII);
URLCodec.java 196 public byte[] encode(byte[] bytes) { method in class:URLCodec
225 public String encode(String pString, String charset) method in class:URLCodec
231 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII);
245 public String encode(String pString) throws EncoderException { method in class:URLCodec
250 return encode(pString, getDefaultCharset());
311 public Object encode(Object pObject) throws EncoderException { method in class:URLCodec
315 return encode((byte[])pObject);
317 return encode((String)pObject);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodec.h 87 virtual CString encode(const UChar*, size_t length, UnencodableHandling) = 0;
88 virtual CString encode(const LChar*, size_t length, UnencodableHandling) = 0;
TextCodecUTF8.h 45 virtual CString encode(const UChar*, size_t length, UnencodableHandling) override;
46 virtual CString encode(const LChar*, size_t length, UnencodableHandling) override;
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptEncoding.java 89 * Encode the value of this header.
94 return encode(new StringBuffer()).toString();
102 buffer.append(SEMICOLON).append(parameters.encode());
ExtensionHeaderImpl.java 90 encodedHdr = this.encode();
107 public String encode() { method in class:ExtensionHeaderImpl
ExtensionHeaderList.java 62 public String encode() { method in class:ExtensionHeaderList
67 retval.append(eh.encode());
InReplyTo.java 92 return callId.encode();
100 return callId.encode();
RecordRoute.java 70 /** Encode into canonical form.
81 address.encode(buffer);
88 this.parameters.encode(buffer);
RouteList.java 62 public String encode() { method in class:RouteList
64 else return super.encode();
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
ReferredBy.java 49 * Encode the header content into a String.
59 retval += address.encode();
65 retval += SEMICOLON + parameters.encode();
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
ServiceRoute.java 67 /** Encode into canonical form.
75 retval.append(address.encode());
81 retval.append(SEMICOLON + this.parameters.encode());
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
PhotosListActivity.java 37 "content://xmldocument/?url=" + Uri.encode(PICASA_FEED_URL)));
  /external/chromium_org/net/data/websocket/
close-with-split-packet_wsh.py 22 packet = stream.create_close_frame(code + 'split test'.encode('utf-8'))
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.h 54 PassRefPtr<Uint8Array> encode(const String&);
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.h 25 Base64 encodes src into dst. encode is a pointer to at least 65 chars.
26 encode[64] will be used as the pad character. Encodings other than the
29 static size_t Encode(const void* src, size_t length, void* dest, const char* encode = NULL);
  /external/glide/library/src/main/java/com/bumptech/glide/load/
SkipCache.java 16 public boolean encode(Resource resource, OutputStream os) { method in class:SkipCache
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
NullEncoder.java 16 public boolean encode(T data, OutputStream os) { method in class:NullEncoder

Completed in 1543 milliseconds

1 23 4 5 6 7 8 91011>>