HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 1 - 25 of 522) 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 42 * the decode process.
44 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
Decoder.java 45 * this decode method will throw a DecoderException.
47 * @param pObject an object to "decode"
57 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
StringDecoder.java 42 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
  /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
Base64.java 93 * decode the base 64 encoded input data. It is assumed the input data is valid.
97 public static byte[] decode( method in class:Base64
105 encoder.decode(data, 0, data.length, bOut);
109 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
116 * decode the base 64 encoded String data - whitespace will be ignored.
120 public static byte[] decode( method in class:Base64
128 encoder.decode(data, bOut);
132 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
139 * decode the base 64 encoded String data writing it to the given output stream,
144 public static int decode( method in class:Base64
    [all...]
Hex.java 92 * decode the Hex encoded input data. It is assumed the input data is valid.
96 public static byte[] decode( method in class:Hex
103 encoder.decode(data, 0, data.length, bOut);
114 * decode the Hex encoded String data - whitespace will be ignored.
118 public static byte[] decode( method in class:Hex
125 encoder.decode(data, bOut);
136 * decode the Hex encoded String data writing it to the given output stream,
141 public static int decode( method in class:Hex
146 return encoder.decode(data, out);
  /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;
TextCodec.h 80 String decode(const char* str, size_t length, FlushBehavior flush = DoNotFlush) function in class:WTF::TextCodec
83 return decode(str, length, flush, false, ignored);
86 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) = 0;
  /external/chromium_org/third_party/brotli/src/brotli/dec/
Makefile 5 OBJS = bit_reader.o decode.o huffman.o safe_malloc.o streams.o
  /external/chromium_org/third_party/skia/src/utils/
SkBase64.h 22 Error decode(const char* src, size_t length);
32 Error decode(const void* srcPtr, size_t length, bool writeDestination);
  /external/chromium_org/v8/src/
field-index.h 34 return IsInObjectBits::decode(bit_field_);
38 return IsDoubleBits::decode(bit_field_);
47 return IndexBits::decode(bit_field_);
58 DCHECK(!IsHiddenField::decode(bit_field_));
61 result += InObjectPropertyBits::decode(bit_field_);
89 DCHECK(!IsHiddenField::decode(bit_field_));
90 return FirstInobjectPropertyOffsetBits::decode(bit_field_);
  /external/nanopb-c/tests/callbacks/
decode_callbacks.c 21 /* Print the string, in format comparable with protoc --decode.
73 testmessage.submsg.stringvalue.funcs.decode = &print_string;
75 testmessage.submsg.int32value.funcs.decode = &print_int32;
77 testmessage.submsg.fixed32value.funcs.decode = &print_fixed32;
79 testmessage.submsg.fixed64value.funcs.decode = &print_fixed64;
82 testmessage.stringvalue.funcs.decode = &print_string;
84 testmessage.int32value.funcs.decode = &print_int32;
86 testmessage.fixed32value.funcs.decode = &print_fixed32;
88 testmessage.fixed64value.funcs.decode = &print_fixed64;
90 testmessage.repeatedstring.funcs.decode = &print_string
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 38 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode(
40 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode(
42 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
EncodeHtmlDataUriTest.java 24 private String decode(String dataUri) throws java.io.UnsupportedEncodingException { method in class:EncodeHtmlDataUriTest
26 return URLDecoder.decode(data, "UTF-8");
33 String decodedUri = decode(encodedUri);
41 String decodedUri = decode(encodedUri);
49 String decodedUri = decode(encodedUri);
58 String decodedUri = decode(encodedUri);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X962NamedCurves.java 30 Hex.decode("03188da80eb03090f67cbf20eb43a18800f4ff0afd82ff1012")),
33 Hex.decode("3045AE6FC8422f64ED579528D38120EAE12196D5"));
49 Hex.decode("03eea2bae7e1497842f2de7769cfe9c989c072ad696f48034a")),
52 Hex.decode("31a92ee2029fd10d901b113e990710f0d21ac6b6"));
68 Hex.decode("027d29778100c65a1da1783716588dce2b8b4aee8e228f1896")),
71 Hex.decode("c469684435deb378c4b65ca9591e2a5763059a2e"));
87 Hex.decode("020ffa963cdca8816ccc33b8642bedf905c3d358573d3f27fbbd3b3cb9aaaf")),
90 Hex.decode("e43bb460f0b80cc0c0b075798e948060f8321b7d"));
106 Hex.decode("0238af09d98727705120c921bb5e9e26296a3cdcf2f35757a0eafd87b830e7")),
109 Hex.decode("e8b4011604095303ca3b8099982be09fcb9ae616"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextDecoder.h 57 String decode(ArrayBufferView*, const TextDecodeOptions&, ExceptionState&);
58 String decode(ExceptionState&);
  /external/ksoap2/kobjects/org/ksoap2/kobjects/base64/
Base64.java 94 static int decode(char c) { method in class:Base64
118 public static byte[] decode(String s) { method in class:Base64
122 decode(s, bos); method
129 public static void decode(String s, OutputStream os) method in class:Base64
143 (decode(s.charAt(i)) << 18)
144 + (decode(s.charAt(i + 1)) << 12)
145 + (decode(s.charAt(i + 2)) << 6)
146 + (decode(s.charAt(i + 3)));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSAEncoder.java 11 BigInteger[] decode(byte[] sig) method in interface:DSAEncoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/
ResourceDecoder.java 14 public Resource<Z> decode(T source, int width, int height) throws IOException; method in interface:ResourceDecoder
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 36 return new BigInteger(1, Hex.decode(hex));
50 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
55 //ECPoint G = curve.decodePoint(Hex.decode("02"
57 ECPoint G = curve.decodePoint(Hex.decode("04"
76 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
81 //ECPoint G = curve.decodePoint(Hex.decode("03"
83 ECPoint G = curve.decodePoint(Hex.decode("04"
102 byte[] S = Hex.decode("000E0D4D696E6768756151750CC03A4473D03679");
107 //ECPoint G = curve.decodePoint(Hex.decode("03"
109 ECPoint G = curve.decodePoint(Hex.decode("04
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
QuotedPrintableCodec.java 234 public byte[] decode(byte[] bytes) throws DecoderException { method in class:QuotedPrintableCodec
280 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException { method in class:QuotedPrintableCodec
284 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
300 public String decode(String pString) throws DecoderException { method in class:QuotedPrintableCodec
305 return decode(pString, getDefaultCharset());
346 public Object decode(Object pObject) throws DecoderException { method in class:QuotedPrintableCodec
350 return decode((byte[]) pObject);
352 return decode((String) pObject);

Completed in 402 milliseconds

1 2 3 4 5 6 7 8 91011>>