HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 1 - 25 of 1360) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/harfbuzz_ng/test/shaping/
hb-unicode-decode 5 UtilMains.filter_multiple_strings_or_stdin (Unicode.decode, "UNICODE_STRING")
  /external/apache-http/src/org/apache/commons/codec/
BinaryDecoder.java 37 * the decode process.
39 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
Decoder.java 40 * this decode method will throw a DecoderException.
42 * @param pObject an object to "decode"
52 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
StringDecoder.java 37 String decode(String pString) throws DecoderException; method in interface:StringDecoder
  /external/nanopb-c/examples/using_union_messages/
Makefile 8 all: encode decode
9 ./encode 1 | ./decode
10 ./encode 2 | ./decode
11 ./encode 3 | ./decode
  /libcore/luni/src/main/java/java/net/
URLDecoder.java 25 * This class is used to decode a string which is encoded in the {@code
41 * @deprecated Use {@link #decode(String, String)} instead.
44 public static String decode(String s) { method in class:URLDecoder
45 return UriCodec.decode(s, true, Charset.defaultCharset(), true);
59 public static String decode(String s, String charsetName) throws UnsupportedEncodingException { method in class:URLDecoder
60 return UriCodec.decode(s, true, Charset.forName(charsetName), true);
  /external/smack/src/org/jivesoftware/smack/util/
StringEncoder.java 35 String decode(String string); method in interface:StringEncoder
Base64Encoder.java 38 public String decode(String s) { method in class:Base64Encoder
39 return new String(Base64.decode(s));
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 224 alltypes.req_int32.funcs.decode = &read_varint;
227 alltypes.req_int64.funcs.decode = &read_varint;
230 alltypes.req_uint32.funcs.decode = &read_varint;
233 alltypes.req_uint32.funcs.decode = &read_varint;
236 alltypes.req_uint64.funcs.decode = &read_varint;
239 alltypes.req_sint32.funcs.decode = &read_svarint;
242 alltypes.req_sint64.funcs.decode = &read_svarint;
245 alltypes.req_bool.funcs.decode = &read_varint;
248 alltypes.req_fixed32.funcs.decode = &read_fixed32;
251 alltypes.req_sfixed32.funcs.decode = &read_fixed32
    [all...]
  /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
14 int decode(byte[] data, int off, int length, OutputStream out) throws IOException; method in interface:Encoder
16 int decode(String data, OutputStream out) throws IOException; method in interface:Encoder
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_ArithIntDecoder.h 19 int decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult);
32 int decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult);
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 27 IntType decode(const ByteType *pBuf, size_t &pSize);
30 IntType decode(const ByteType *&pBuf);
73 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
80 uint64_t decode<uint64_t>(const ByteType *&pBuf);
86 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize);
89 int64_t decode<int64_t>(const ByteType *&pBuf);
102 IntType decode(const char *pBuf, size_t &pSize) { function in namespace:mcld::leb128
103 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
107 IntType decode(const char *&pBuf) { function in namespace:mcld::leb128
108 return decode<IntType>(reinterpret_cast<const ByteType*&>(pBuf))
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
IntegerTest.java 81 assertEquals(0, Integer.decode("+0").intValue());
82 assertEquals(473, Integer.decode("+473").intValue());
83 assertEquals(255, Integer.decode("+0xFF").intValue());
84 assertEquals(16, Integer.decode("+020").intValue());
85 assertEquals(2147483647, Integer.decode("+2147483647").intValue());
86 assertEquals(-73, Integer.decode("-73").intValue());
87 assertEquals(-255, Integer.decode("-0xFF").intValue());
88 assertEquals(255, Integer.decode("+#FF").intValue());
89 assertEquals(-255, Integer.decode("-#FF").intValue());
92 Integer.decode("--1"); // multiple sign char
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Type.java 81 public final Object decode(byte[] encoded) throws IOException { method in class:ASN1Type
82 return decode(new DerInputStream(encoded));
85 public final Object decode(byte[] encoded, int offset, int encodingLen) method in class:ASN1Type
87 return decode(new DerInputStream(encoded, offset, encodingLen));
90 public final Object decode(InputStream in) throws IOException { method in class:ASN1Type
91 return decode(new DerInputStream(in));
97 decode(decoder);
103 decode(decoder);
116 public abstract Object decode(BerInputStream in) throws IOException; method in class:ASN1Type
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.h 55 String decode(ArrayBufferView*, const Dictionary&, ExceptionState&);
56 String decode(ExceptionState& exceptionState) { return decode(0, Dictionary(), exceptionState); } function in class:WebCore::FINAL
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/provider/cert/
CertFactoryTestData.java 298 return Base64.decode(certPathPKCS7Base64.getBytes("UTF-8"));
302 return Base64.decode(certPathPkiPathBase64.getBytes("UTF-8"));
306 return Base64.decode(certEncodingBase64.getBytes("UTF-8"));
318 return Base64.decode(crlEncodingBase64.getBytes("UTF-8"));
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecReplacement.h 21 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
  /external/chromium_org/third_party/brotli/src/brotli/dec/
Makefile 5 OBJS = bit_reader.o decode.o huffman.o safe_malloc.o streams.o
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
URLDecoderTest.java 38 * java.net.URLDecoder#decode(java.lang.String)
44 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
46 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
48 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
53 * java.net.URLDecoder#decode(java.lang.String, java.lang.String)
58 URLDecoder.decode("", "");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
big5.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
big5hkscs.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
cp932.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
cp949.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
cp950.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,
euc_jis_2004.py 14 decode = codec.decode variable in class:Codec
34 decode=Codec().decode,

Completed in 1904 milliseconds

1 2 3 4 5 6 7 8 91011>>