HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 151 - 175 of 5594) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
latin_1.py 18 decode = codecs.latin_1_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode = codecs.latin_1_encode variable in class:StreamConverter
45 decode=Codec.decode,
charmap.py 22 decode = codecs.charmap_decode variable in class:Codec
37 def decode(self, input, final=False): member in class:IncrementalDecoder
55 def decode(self,input,errors='strict'): member in class:StreamReader
56 return Codec.decode(input,errors,self.mapping)
64 decode=Codec.decode,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoderTest.java 199 * Class under test for CharBuffer decode(ByteBuffer)
208 decoder.decode(null);
214 CharBuffer out = decoder.decode(ByteBuffer.allocate(0));
219 out = decoder.decode(in);
227 out = decoder.decode(in);
246 CharBuffer buffer = decoder.decode(in);
255 out = decoder.decode(in);
261 out = decoder.decode(in);
271 decoder.decode(in);
279 out = decoder.decode(in)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperStreamResourceDecoder.java 11 * A {@link com.bumptech.glide.load.ResourceDecoder} that can decode an
23 public Resource<GifBitmapWrapper> decode(InputStream source, int width, int height) throws IOException { method in class:GifBitmapWrapperStreamResourceDecoder
24 return gifBitmapDecoder.decode(new ImageVideoWrapper(source, null), width, height);
  /external/nanopb-c/tests/missing_fields/
missing_fields.c 34 printf("Decode failed: %s\n", PB_GET_ERROR(&stream));
39 /* Test that it does *not* decode properly if we require the field */
46 printf("Decode didn't detect missing field.\n");
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417Reader.h 16 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
17 CFX_ByteString Decode(CBC_BinaryBitmap* image,
21 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e);
  /external/llvm/test/MC/Disassembler/PowerPC/
ppc64-encoding-ext.txt 3 # FIXME: decode as beqlr 0
7 # FIXME: decode as beqlr 1
11 # FIXME: decode as beqlr 2
15 # FIXME: decode as beqlr 3
19 # FIXME: decode as beqlr 4
23 # FIXME: decode as beqlr 5
27 # FIXME: decode as beqlr 6
31 # FIXME: decode as beqlr 7
299 # FIXME: decode as bltlr 2
303 # FIXME: decode as bltlr
    [all...]
  /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/gdb/darwin-x86/lib/python2.7/encodings/
charmap.py 22 decode = codecs.charmap_decode variable in class:Codec
37 def decode(self, input, final=False): member in class:IncrementalDecoder
55 def decode(self,input,errors='strict'): member in class:StreamReader
56 return Codec.decode(input,errors,self.mapping)
64 decode=Codec.decode,
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
charmap.py 22 decode = codecs.charmap_decode variable in class:Codec
37 def decode(self, input, final=False): member in class:IncrementalDecoder
55 def decode(self,input,errors='strict'): member in class:StreamReader
56 return Codec.decode(input,errors,self.mapping)
64 decode=Codec.decode,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
charmap.py 22 decode = codecs.charmap_decode variable in class:Codec
37 def decode(self, input, final=False): member in class:IncrementalDecoder
55 def decode(self,input,errors='strict'): member in class:StreamReader
56 return Codec.decode(input,errors,self.mapping)
64 decode=Codec.decode,
  /external/pdfium/xfa/src/fxbarcode/
BC_Reader.h 15 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e) = 0;
16 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image,
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixReader.h 17 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
18 CFX_ByteString Decode(CBC_BinaryBitmap* image, int hints, int32_t& e);
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCoderDecoder.h 23 CBC_CommonDecoderResult* Decode(FX_BOOL* image,
27 CBC_CommonDecoderResult* Decode(CBC_CommonBitMatrix* bits,
  /external/webrtc/webrtc/modules/video_coding/
video_coding_robustness_unittest.cc 89 Decode(AllOf(Field(&EncodedImage::_timeStamp, ts),
110 ASSERT_EQ(VCM_OK, vcm_->Decode(0));
111 ASSERT_EQ(VCM_OK, vcm_->Decode(0));
112 ASSERT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
118 ASSERT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
124 ASSERT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
131 ASSERT_EQ(VCM_OK, vcm_->Decode(0));
145 EXPECT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
150 EXPECT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
165 // Decode operation
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 33 return new BigInteger(1, Hex.decode(hex));
47 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
52 //ECPoint G = curve.decodePoint(Hex.decode("02"
54 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
73 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
78 //ECPoint G = curve.decodePoint(Hex.decode("03"
80 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04"
99 byte[] S = Hex.decode("000E0D4D696E6768756151750CC03A4473D03679");
104 //ECPoint G = curve.decodePoint(Hex.decode("03"
106 X9ECPoint G = new X9ECPoint(curve, Hex.decode("04
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64.java 96 * decode the base 64 encoded input data. It is assumed the input data is valid.
100 public static byte[] decode( method in class:Base64
108 encoder.decode(data, 0, data.length, bOut);
112 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e);
119 * decode the base 64 encoded String data - whitespace will be ignored.
123 public static byte[] decode( method in class:Base64
131 encoder.decode(data, bOut);
135 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e);
142 * decode the base 64 encoded String data writing it to the given output stream,
147 public static int decode( method in class:Base64
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
AES128CBCNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode("7E3D723C09A9852B24F584F9D916F6A8");
22 private static final byte[] KAT_IV = HexEncoding.decode("944AE274D983892EADE422274858A96A");
23 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
AES128CBCPKCS7PaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode("F16E698472578E919D92806262C5169F");
22 private static final byte[] KAT_IV = HexEncoding.decode("EF743540F8421ACA128A3247521F3E7D");
23 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
AES128CTRNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode("4713a7b2f93efe809b42ecc45213ef9f");
22 private static final byte[] KAT_IV = HexEncoding.decode("ebfa19b0ebf3d57feabd4c4bd04bea01");
23 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
AES192CBCNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("80a199aab0eee77e7762ddf3b3a32f40");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
27 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
AES192CBCPKCS7PaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("e61d13dfbf0533289f0e7950209da418");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
AES192CTRNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("df0694959b89054156962d68a226965c");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
AES256CBCNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("23b4d85239fb90db93b07a981e90a170");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
27 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
AES256CBCPKCS7PaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("9af96967195bb0184f129beffa8241ae");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
27 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(

Completed in 1169 milliseconds

1 2 3 4 5 67 8 91011>>