HomeSort by relevance Sort by last modified time
    Searched defs:encode (Results 1 - 25 of 706) sorted by null

1 2 3 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);
LiteralTagInfo.java 20 private static String encode(String t) { method in class:LiteralTagInfo
28 super("Text", "Text", encode(text), sp);
  /libcore/luni/src/main/java/java/net/
URLEncoder.java 26 * This class is used to encode a string using the format required by
44 * Equivalent to {@code encode(s, "UTF-8")}.
46 * @deprecated Use {@link #encode(String, String)} instead.
49 public static String encode(String s) { method in class:URLEncoder
50 return ENCODER.encode(s, StandardCharsets.UTF_8);
56 public static String encode(String s, String charsetName) throws UnsupportedEncodingException { method in class:URLEncoder
57 return ENCODER.encode(s, Charset.forName(charsetName));
  /external/apache-http/src/org/apache/commons/codec/
BinaryEncoder.java 44 byte[] encode(byte[] pArray) throws EncoderException; method in interface:BinaryEncoder
Encoder.java 40 * @param pObject An object ot encode
48 Object encode(Object pObject) throws EncoderException; method in interface:Encoder
StringEncoder.java 35 * @param pString a String to encode
42 String encode(String pString) throws EncoderException; method in interface:StringEncoder
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROutputStream.java 25 ((ASN1Primitive)obj).encode(this); method
29 ((ASN1Encodable)obj).toASN1Primitive().encode(this);
ASN1Null.java 62 abstract void encode(ASN1OutputStream out) method in class:ASN1Null
BERSequence.java 57 void encode( method in class:BERSequence
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 7 * Encode and decode byte arrays (typically from binary to 7-bit ASCII
12 int encode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
Base64.java 24 byte[] encoded = encode(data, off, length);
29 * encode the input data producing a base 64 encoded byte array.
33 public static byte[] encode( method in class:Base64
36 return encode(data, 0, data.length);
40 * encode the input data producing a base 64 encoded byte array.
44 public static byte[] encode( method in class:Base64
54 encoder.encode(data, off, length, bOut);
65 * Encode the byte data to base 64 writing it to the given output stream.
69 public static int encode( method in class:Base64
74 return encoder.encode(data, 0, data.length, out)
82 public static int encode( method in class:Base64
    [all...]
Hex.java 24 byte[] encoded = encode(data, off, length);
29 * encode the input data producing a Hex encoded byte array.
33 public static byte[] encode( method in class:Hex
36 return encode(data, 0, data.length);
40 * encode the input data producing a Hex encoded byte array.
44 public static byte[] encode( method in class:Hex
53 encoder.encode(data, off, length, bOut);
64 * Hex encode the byte data writing it to the given output stream.
68 public static int encode( method in class:Hex
73 return encoder.encode(data, 0, data.length, out)
81 public static int encode( method in class:Hex
    [all...]
  /external/elfutils/0.153/libelf/
elf32_xlatetof.c 67 elfw2(LIBELFBITS, xlatetof) (dest, src, encode)
70 unsigned int encode; variable
95 /* Test the encode parameter. */
96 if (encode != ELFDATA2LSB && encode != ELFDATA2MSB)
113 if ((__BYTE_ORDER == __LITTLE_ENDIAN && encode == ELFDATA2LSB)
114 || (__BYTE_ORDER == __BIG_ENDIAN && encode == ELFDATA2MSB))
elf32_xlatetom.c 67 elfw2(LIBELFBITS, xlatetom) (dest, src, encode)
70 unsigned int encode; variable
96 /* Test the encode parameter. */
97 if (encode != ELFDATA2LSB && encode != ELFDATA2MSB)
114 if ((BYTE_ORDER == LITTLE_ENDIAN && encode == ELFDATA2LSB)
115 || (BYTE_ORDER == BIG_ENDIAN && encode == ELFDATA2MSB))
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Encoder.java 7 public boolean encode(T data, OutputStream os); method in interface:Encoder
SkipCache.java 16 public boolean encode(Resource resource, OutputStream os) { method in class:SkipCache
  /external/smack/src/org/jivesoftware/smack/util/
StringEncoder.java 27 String encode(String string); method in interface:StringEncoder
Base64Encoder.java 34 public String encode(String s) { method in class:Base64Encoder
Base64FileUrlEncoder.java 40 public String encode(String s) { method in class:Base64FileUrlEncoder
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 24 size_t encode(ByteType *&pBuf, IntType pValue);
34 * encode it in ULEB128 format.
53 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue);
56 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue);
62 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue);
65 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue);
69 * contain the number of bytes used in the buffer to encode the returned
97 size_t encode(char *&pBuf, IntType pValue) { function in namespace:mcld::leb128
98 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue);
  /external/nist-sip/java/gov/nist/javax/sip/header/
ExtensionHeaderList.java 62 public String encode() { method in class:ExtensionHeaderList
67 retval.append(eh.encode());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSAEncoder.java 8 byte[] encode(BigInteger r, BigInteger s) method in interface:DSAEncoder
  /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
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 17 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue) { function in namespace:mcld::leb128
36 size_t encode<uint32_t>(ByteType *&pBuf, uint32_t pValue) { function in namespace:mcld::leb128
67 size_t encode<int64_t>(ByteType *&pBuf, int64_t pValue) { function in namespace:mcld::leb128
89 size_t encode<int32_t>(ByteType *&pBuf, int32_t pValue) { function in namespace:mcld::leb128
90 return encode<int64_t>(pBuf, static_cast<int64_t>(pValue));
  /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

Completed in 109 milliseconds

1 2 3 4 5 6 7 8 91011>>