/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
ascii.py | 18 decode = codecs.ascii_decode variable in class:Codec 25 def decode(self, input, final=False): member in class:IncrementalDecoder 37 decode = codecs.ascii_encode variable in class:StreamConverter 45 decode=Codec.decode,
|
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,
|
/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/third_party/WebKit/Source/wtf/text/ |
TextCodec.h | 81 String decode(const char* str, size_t length, FlushBehavior flush = DoNotFlush) function in class:WTF::TextCodec 84 return decode(str, length, flush, false, ignored); 87 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) = 0;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
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/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);
|
/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/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/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
|
/frameworks/base/services/core/java/com/android/server/updates/ |
TZInfoInstallReceiver.java | 31 super.install(Base64.decode(encodedContent, Base64.DEFAULT), version);
|
/frameworks/opt/net/voip/src/jni/rtp/ |
AudioCodec.h | 33 virtual int decode(int16_t *samples, int count, void *payload, int length) = 0;
|
GsmCodec.cpp | 47 int decode(int16_t *samples, int count, void *payload, int length); 60 int GsmCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon38995::GsmCodec
|
/hardware/ti/omap4-aah/camera/inc/ |
Decoder_libjpeg.h | 42 bool decode(unsigned char *jpeg_src, int filled_len, unsigned char *nv12_buffer, int stride);
|
/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...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ByteTest.java | 277 * java.lang.Byte#decode(String) 280 assertEquals(new Byte((byte) 0), Byte.decode("0")); 281 assertEquals(new Byte((byte) 1), Byte.decode("1")); 282 assertEquals(new Byte((byte) -1), Byte.decode("-1")); 283 assertEquals(new Byte((byte) 0xF), Byte.decode("0xF")); 284 assertEquals(new Byte((byte) 0xF), Byte.decode("#F")); 285 assertEquals(new Byte((byte) 0xF), Byte.decode("0XF")); 286 assertEquals(new Byte((byte) 07), Byte.decode("07")); 289 Byte.decode("9.2"); 295 Byte.decode(""); [all...] |
/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 | 229 public byte[] decode(byte[] bytes) throws DecoderException { method in class:QuotedPrintableCodec 275 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException { method in class:QuotedPrintableCodec 279 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); 295 public String decode(String pString) throws DecoderException { method in class:QuotedPrintableCodec 300 return decode(pString, getDefaultCharset()); 341 public Object decode(Object pObject) throws DecoderException { method in class:QuotedPrintableCodec 345 return decode((byte[]) pObject); 347 return decode((String) pObject);
|
URLCodec.java | 205 public byte[] decode(byte[] bytes) throws DecoderException { method in class:URLCodec 264 public String decode(String pString, String charset) method in class:URLCodec 270 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); 285 public String decode(String pString) throws DecoderException { method in class:URLCodec 290 return decode(pString, getDefaultCharset()); 330 public Object decode(Object pObject) throws DecoderException { method in class:URLCodec 334 return decode((byte[])pObject); 336 return decode((String)pObject);
|
/external/chromium_org/sdch/open-vcdiff/src/ |
vcdiff_test.sh | 45 # vcdiff with three arguments but without "encode" or "decode" 60 $VCDIFF decode -dictionary $DICTIONARY_FILE \ 63 || { echo "Decode with three arguments failed"; \ 80 { $VCDIFF decode -dictionary $DICTIONARY_FILE \ 83 || { echo "Decode using stdin/stdout failed"; \ 100 { $VCDIFF decode -dictionary $DICTIONARY_FILE \ 103 || { echo "Decode with mixed arguments failed"; \ 119 { $VCDIFF decode -dictionary $DICTIONARY_FILE \ 122 || { echo "Decode with mixed arguments failed"; \ 135 $VCDIFF decode -dictionary $TARGET_FILE [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
TextDecoder.idl | 42 [RaisesException, MeasureAs=TextDecoderDecode] DOMString decode(optional ArrayBufferView input, optional Dictionary options);
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/ |
GifBitmapWrapperStreamResourceDecoder.java | 18 public Resource<GifBitmapWrapper> decode(InputStream source, int width, int height) throws IOException { method in class:GifBitmapWrapperStreamResourceDecoder 19 return gifBitmapDecoder.decode(new ImageVideoWrapper(source, null), width, height);
|