HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 326 - 350 of 667) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/simplejson/
decoder.py 21 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
101 on attempt to decode an invalid string. If strict is False then literal
359 the result of any object literal decode with an ordered list of pairs.
401 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder
413 """Decode a JSON document from ``s`` (a ``str`` or ``unicode``
419 This can be used to decode a JSON document from a string that may
  /external/chromium_org/third_party/skia/src/ports/
SkImageDecoder_empty.cpp 35 bool SkImageDecoder::decode(SkStream*, SkBitmap*, SkColorType, Mode) { function in class:SkImageDecoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
VideoBitmapDecoder.java 29 public Bitmap decode(ParcelFileDescriptor resource, BitmapPool bitmapPool, int outWidth, int outHeight, method in class:VideoBitmapDecoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifResourceDecoder.java 34 public GifDataResource decode(InputStream source, int width, int height) throws IOException { method in class:GifResourceDecoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceDecoder.java 27 public Resource<GifBitmapWrapper> decode(ImageVideoWrapper source, int width, int height) throws IOException { method in class:GifBitmapWrapperResourceDecoder
40 Resource<GifData> gifResource = gifDecoder.decode(bis, width, height);
46 Resource<Bitmap> bitmapResource = bitmapDecoder.decode(source, width, height);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
Base64.java 38 public static byte[] decode(byte[] in) { method in class:Base64
39 return decode(in, in.length);
42 public static byte[] decode(byte[] in, int len) { method in class:Base64
  /external/skia/src/ports/
SkImageDecoder_empty.cpp 35 bool SkImageDecoder::decode(SkStream*, SkBitmap*, SkColorType, Mode) { function in class:SkImageDecoder
  /external/smack/src/com/kenai/jbosh/
GZIPCodec.java 77 * Uncompress/decode the data provided using the GZIP format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:GZIPCodec
ZLIBCodec.java 77 * Uncompress/decode the data provided using the ZLIB format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:ZLIBCodec
  /external/smack/src/org/jivesoftware/smack/util/
Base32Encoder.java 44 public String decode(String str) { method in class:Base32Encoder
  /frameworks/base/tools/preload/
Record.java 132 processName = decode(parts[3]).intern();
135 className = vmTypeToLanguage(decode(parts[5])).intern();
141 * Decode any escaping that may have been written to the log line.
148 String decode(String rawField) { method in class:Record
  /frameworks/opt/net/voip/src/jni/rtp/
AmrCodec.cpp 55 int decode(int16_t *samples, int count, void *payload, int length);
131 int AmrCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon38990::AmrCodec
216 int decode(int16_t *samples, int count, void *payload, int length);
242 int GsmEfrCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon38990::GsmEfrCodec
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
BerTlv.java 74 * @param data A byte array to decode from
78 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
  /libcore/luni/src/main/java/java/lang/
Byte.java 133 public static Byte decode(String string) throws NumberFormatException { method in class:Byte
134 int intValue = Integer.decode(string);
Short.java 133 public static Short decode(String string) throws NumberFormatException { method in class:Short
134 int intValue = Integer.decode(string).intValue();
  /libcore/luni/src/main/java/java/net/
JarURLConnection.java 69 file = decode(url.getFile());
196 private static String decode(String encoded) throws MalformedURLException { method in class:JarURLConnection
201 return UriCodec.decode(
204 throw new MalformedURLException("Unable to decode URL", e);
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 18 public static native int decode(long converterHandle, byte[] input, int inEnd, method in class:NativeConverter
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Any.java 72 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Any
ASN1Choice.java 117 * If it is a matter what time format should be used to decode/encode
300 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Choice
303 throw new ASN1Exception("Failed to decode ASN.1 choice type. No alternatives were found for " + getClass().getName());// FIXME message
308 in.content = type[index].decode(in);
ASN1Integer.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Integer
ASN1Oid.java 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Oid
77 // Allocate and decode
ASN1StringType.java 84 public Object decode(BerInputStream in) throws IOException { method in class:ASN1StringType
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
ASN1UTCTime.java 77 @Override public Object decode(BerInputStream in) throws IOException { method in class:ASN1UTCTime
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AuthorityKeyIdentifier.java 67 public static AuthorityKeyIdentifier decode(byte[] encoding) throws IOException { method in class:AuthorityKeyIdentifier
68 AuthorityKeyIdentifier aki = (AuthorityKeyIdentifier) ASN1.decode(encoding);

Completed in 1245 milliseconds

<<11121314151617181920>>