HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 201 - 225 of 1962) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
tis_620.py 14 def decode(self,input,errors='strict'): member in class:Codec
22 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode=Codec().decode,
undefined.py 21 def decode(self,input,errors='strict'): member in class:Codec
29 def decode(self, input, final=False): member in class:IncrementalDecoder
44 decode=Codec().decode,
unicode_escape.py 18 decode = codecs.unicode_escape_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
unicode_internal.py 18 decode = codecs.unicode_internal_decode variable in class:Codec
25 def decode(self, input, final=False): member in class:IncrementalDecoder
40 decode=Codec.decode,
utf_16_be.py 15 def decode(input, errors='strict'): function
29 decode = codecs.utf_16_be_decode variable in class:StreamReader
37 decode=decode,
utf_16_le.py 15 def decode(input, errors='strict'): function
29 decode = codecs.utf_16_le_decode variable in class:StreamReader
37 decode=decode,
utf_32_be.py 10 def decode(input, errors='strict'): function
24 decode = codecs.utf_32_be_decode variable in class:StreamReader
32 decode=decode,
utf_32_le.py 10 def decode(input, errors='strict'): function
24 decode = codecs.utf_32_le_decode variable in class:StreamReader
32 decode=decode,
utf_7.py 11 def decode(input, errors='strict'): function
25 decode = codecs.utf_7_decode variable in class:StreamReader
33 decode=decode,
utf_8.py 15 def decode(input, errors='strict'): function
29 decode = codecs.utf_8_decode variable in class:StreamReader
37 decode=decode,
uu_codec.py 4 will return Python string objects for both encode and decode.
77 # Decode
101 def decode(self,input,errors='strict'): member in class:Codec
109 def decode(self, input, final=False): member in class:IncrementalDecoder
124 decode=uu_decode,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
testcodec.py 18 def decode(self,input,errors='strict'): member in class:Codec
32 return (Codec().encode,Codec().decode,StreamReader,StreamWriter)
  /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/resource/
NullDecoder.java 27 public Resource<Z> decode(T source, int width, int height) { method in class:NullDecoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapDecoder.java 11 * @param <T> The type of resource this decoder can decode a {@link Bitmap} from.
17 * @param resource The resource to decode, managed by the caller, no need to clean it up.
25 Bitmap decode(T resource, BitmapPool bitmapPool, int outWidth, int outHeight, DecodeFormat decodeFormat) method in interface:BitmapDecoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
FileDecoder.java 14 public Resource<File> decode(File source, int width, int height) { method in class:FileDecoder
  /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/libmicrohttpd/src/microhttpd/
basicauth.c 50 char *decode; local
60 if (NULL == (decode = BASE64Decode (header)))
69 if (NULL == (separator = strchr (decode, ':')))
75 free (decode);
78 if (NULL == (user = strdup (decode)))
80 free (decode);
83 user[separator - decode] = '\0'; /* cut off at ':' */
93 free (decode);
98 free (decode);
  /external/protobuf/ruby/lib/google/
protobuf.rb 67 def self.decode(klass, proto) singleton method in class:Google.Protobuf
68 klass.decode(proto)
  /external/python/cpython2/Lib/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,
base64_codec.py 4 will return Python string objects for both encode and decode.
49 def decode(self, input,errors='strict'): member in class:Codec
58 def decode(self, input, final=False): member in class:IncrementalDecoder
74 decode=base64_decode,
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,
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,
cp037.py 14 def decode(self,input,errors='strict'): member in class:Codec
22 def decode(self, input, final=False): member in class:IncrementalDecoder
37 decode=Codec().decode,

Completed in 1428 milliseconds

1 2 3 4 5 6 7 891011>>