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

<<11121314151617181920>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
base64.py 15 'encode', 'decode', 'encodestring', 'decodestring',
61 """Decode a Base64 encoded string.
63 s is the string to decode. Optional altchars must be a string of at least
88 """Decode a string encoded with the standard Base64 alphabet.
90 s is the string to decode. The decoded string is returned. A TypeError
105 """Decode a string encoded with the standard Base64 alphabet.
107 s is the string to decode. The decoded string is returned. A TypeError
180 """Decode a Base32 encoded string.
182 s is the string to decode. Optional casefold is a flag specifying whether
217 # Now decode the full quant
300 def decode(input, output): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
base64.py 15 'encode', 'decode', 'encodestring', 'decodestring',
61 """Decode a Base64 encoded string.
63 s is the string to decode. Optional altchars must be a string of at least
88 """Decode a string encoded with the standard Base64 alphabet.
90 s is the string to decode. The decoded string is returned. A TypeError
105 """Decode a string encoded with the standard Base64 alphabet.
107 s is the string to decode. The decoded string is returned. A TypeError
180 """Decode a Base32 encoded string.
182 s is the string to decode. Optional casefold is a flag specifying whether
217 # Now decode the full quant
300 def decode(input, output): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
base64.py 15 'encode', 'decode', 'encodestring', 'decodestring',
61 """Decode a Base64 encoded string.
63 s is the string to decode. Optional altchars must be a string of at least
88 """Decode a string encoded with the standard Base64 alphabet.
90 s is the string to decode. The decoded string is returned. A TypeError
105 """Decode a string encoded with the standard Base64 alphabet.
107 s is the string to decode. The decoded string is returned. A TypeError
180 """Decode a Base32 encoded string.
182 s is the string to decode. Optional casefold is a flag specifying whether
217 # Now decode the full quant
300 def decode(input, output): function
    [all...]
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_TrdProc.cpp 143 IBI = pGRRD->decode(pArithDecoder.get(), grContext);
261 IADT->decode(pArithDecoder, &STRIPT);
267 IADT->decode(pArithDecoder, &DT);
273 IAFS->decode(pArithDecoder, &DFS);
278 if (!IADS->decode(pArithDecoder, &IDS))
287 IAIT->decode(pArithDecoder, &CURT);
291 IAID->decode(pArithDecoder, &IDI);
298 IARI->decode(pArithDecoder, &RI);
306 IARDW->decode(pArithDecoder, &RDWI);
307 IARDH->decode(pArithDecoder, &RDHI)
    [all...]
  /external/skia/include/codec/
SkAndroidCodec.h 23 * If this stream represents an encoded image that we know how to decode,
24 * return an SkAndroidCodec that can decode it. Otherwise return NULL.
35 * If this data represents an encoded image that we know how to decode,
36 * return an SkAndroidCodec that can decode it. Otherwise return NULL.
58 * If it is possible to decode to requestedColorType, this returns
68 * Returns the appropriate alpha type to decode to. If the image
83 * efficient to decode.
152 * If not NULL, represents a subset of the original image to decode.
159 * The default is NULL, meaning a decode of the entire image.
164 * If the client has requested a decode to kIndex8_SkColorTyp
    [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...]
IntegerTest.java 67 * java.lang.Integer#decode(java.lang.String)
71 // java.lang.Integer.decode(java.lang.String)
73 132233, Integer.decode("132233").intValue());
75 07654321, Integer.decode("07654321").intValue());
77 Integer.decode("#1234567").intValue() == 0x1234567);
79 Integer.decode("0xdAd").intValue() == 0xdad);
80 assertEquals("Failed for -23", -23, Integer.decode("-23").intValue());
82 .decode("0").intValue());
83 assertEquals("Returned incorrect value for 0 hex", 0, Integer.decode("0x0")
86 Integer.decode("-2147483648").intValue() == 0x80000000)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_all.py 28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
152 v1 = v1.decode(charset)
154 v2 = v2.decode(charset
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_all.py 28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
152 v1 = v1.decode(charset)
154 v2 = v2.decode(charset
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
152 v1 = v1.decode(charset)
154 v2 = v2.decode(charset
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
152 v1 = v1.decode(charset)
154 v2 = v2.decode(charset
    [all...]
  /external/v8/src/
code-stubs.h 187 return static_cast<Major>(MajorKeyBits::decode(key));
190 return MinorKeyBits::decode(key);
492 bool IsUninitialized() const { return IsMissBits::decode(minor_key_); }
510 uint32_t sub_minor_key() const { return SubMinorKeyBits::decode(minor_key_); }
684 return LanguageModeBits::decode(sub_minor_key());
688 return FunctionKindBits::decode(sub_minor_key());
710 int slots() const { return SlotsBits::decode(sub_minor_key()); }
742 return AllocationSiteModeBits::decode(sub_minor_key());
765 int length() const { return LengthBits::decode(sub_minor_key()); }
807 return ElementsKindBits::decode(sub_minor_key())
    [all...]
  /external/chromium-trace/catapult/third_party/WebOb/webob/
compat.py 26 return s.decode(encoding, errors)
101 return unquote(s.encode('ascii')).decode('latin-1')
113 yield (name.decode(encoding), value.decode(encoding))
125 yield (x.decode(encoding), y.decode(encoding))
183 parser.feed(hdr_text.decode(self.encoding, self.errors))
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceDecoder.java 19 * An {@link ResourceDecoder} that can decode either an {@link Bitmap} or an {@link GifDrawable}
53 // @see ResourceDecoder.decode
55 public Resource<GifBitmapWrapper> decode(ImageVideoWrapper source, int width, int height) throws IOException { method in class:GifBitmapWrapperResourceDecoder
61 wrapper = decode(source, width, height, tempBytes);
68 private GifBitmapWrapper decode(ImageVideoWrapper source, int width, int height, byte[] bytes) throws IOException { method in class:GifBitmapWrapperResourceDecoder
101 Resource<GifDrawable> gifResource = gifDecoder.decode(bis, width, height);
121 Resource<Bitmap> bitmapResource = bitmapDecoder.decode(toDecode, width, height);
  /external/nanopb-c/
pb_decode.h 1 /* pb_decode.h: Functions to decode protocol buffers. Depends on pb_decode.c.
52 /* Decode a single protocol buffers message from input stream into a C structure.
118 /* Decode the tag for the next field in the stream. Gives the wire type and
125 /* Decode an integer in the varint format. This works for bool, enum, int32,
129 /* Decode an integer in the zig-zagged svarint format. This works for sint32
133 /* Decode a fixed32, sfixed32 or float value. You need to pass a pointer to
137 /* Decode a fixed64, sfixed64 or double value. You need to pass a pointer to
  /external/skia/src/android/
SkBitmapRegionCodec.cpp 52 // Create the image info for the decode
58 // Construct a color table for the decode if necessary
69 // modify during the decode. We could alternatively
70 // perform the decode before creating the bitmap and
72 // colors into the color table after the decode.
98 // the codec recognizes kGray8, we need to decode into a kAlpha8
121 // Decode into the destination bitmap
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_decoder.cc 34 // Struct that we pass to the decoder per frame to decode. We receive it again
43 // On decode we receive a CVPixelBuffer, which we need to convert to a frame
79 // This is the callback function that VideoToolbox calls when decode is
91 LOG(LS_ERROR) << "Failed to decode frame. Status: " << status;
121 int H264VideoToolboxDecoder::Decode(
153 LOG(LS_ERROR) << "Failed to decode frame with code: " << status;
188 // I420 frame after decode, but eventually we will be able to plumb
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
utf_32.py 10 def decode(input, errors='strict'): function
124 del self.decode
128 def decode(self, input, errors='strict'): member in class:StreamReader
132 self.decode = codecs.utf_32_le_decode
134 self.decode = codecs.utf_32_be_decode
145 decode=decode,
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_codeccallbacks.py 174 self.assertEqual(sin.decode("utf-8", "test.relaxedutf8"), sout)
178 self.assertRaises(UnicodeDecodeError, sin.decode,
208 "\x00\x00\x00\x00\x00".decode,
218 "\x00\x00\x00\x00\x00".decode("unicode-internal", "ignore"),
223 "\x00\x00\x00\x00\x00".decode("unicode-internal", "replace"),
230 "\x00\x00\x00\x00\x00".decode("unicode-internal", "test.hui"),
255 s.decode("ascii", "test.handler1"),
259 s.decode("ascii", "test.handler2"),
264 "\\u3042\u3xxx".decode("unicode-escape", "test.handler1"),
269 "\\u3042\u3xx".decode("unicode-escape", "test.handler1")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
utf_32.py 10 def decode(input, errors='strict'): function
124 del self.decode
128 def decode(self, input, errors='strict'): member in class:StreamReader
132 self.decode = codecs.utf_32_le_decode
134 self.decode = codecs.utf_32_be_decode
145 decode=decode,
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_codeccallbacks.py 174 self.assertEqual(sin.decode("utf-8", "test.relaxedutf8"), sout)
178 self.assertRaises(UnicodeDecodeError, sin.decode,
208 "\x00\x00\x00\x00\x00".decode,
218 "\x00\x00\x00\x00\x00".decode("unicode-internal", "ignore"),
223 "\x00\x00\x00\x00\x00".decode("unicode-internal", "replace"),
230 "\x00\x00\x00\x00\x00".decode("unicode-internal", "test.hui"),
255 s.decode("ascii", "test.handler1"),
259 s.decode("ascii", "test.handler2"),
264 "\\u3042\u3xxx".decode("unicode-escape", "test.handler1"),
269 "\\u3042\u3xx".decode("unicode-escape", "test.handler1")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
utf_32.py 10 def decode(input, errors='strict'): function
124 del self.decode
128 def decode(self, input, errors='strict'): member in class:StreamReader
132 self.decode = codecs.utf_32_le_decode
134 self.decode = codecs.utf_32_be_decode
145 decode=decode,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codeccallbacks.py 174 self.assertEqual(sin.decode("utf-8", "test.relaxedutf8"), sout)
178 self.assertRaises(UnicodeDecodeError, sin.decode,
208 "\x00\x00\x00\x00\x00".decode,
218 "\x00\x00\x00\x00\x00".decode("unicode-internal", "ignore"),
223 "\x00\x00\x00\x00\x00".decode("unicode-internal", "replace"),
230 "\x00\x00\x00\x00\x00".decode("unicode-internal", "test.hui"),
255 s.decode("ascii", "test.handler1"),
259 s.decode("ascii", "test.handler2"),
264 "\\u3042\u3xxx".decode("unicode-escape", "test.handler1"),
269 "\\u3042\u3xx".decode("unicode-escape", "test.handler1")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
utf_32.py 10 def decode(input, errors='strict'): function
124 del self.decode
128 def decode(self, input, errors='strict'): member in class:StreamReader
132 self.decode = codecs.utf_32_le_decode
134 self.decode = codecs.utf_32_be_decode
145 decode=decode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codeccallbacks.py 174 self.assertEqual(sin.decode("utf-8", "test.relaxedutf8"), sout)
178 self.assertRaises(UnicodeDecodeError, sin.decode,
208 "\x00\x00\x00\x00\x00".decode,
218 "\x00\x00\x00\x00\x00".decode("unicode-internal", "ignore"),
223 "\x00\x00\x00\x00\x00".decode("unicode-internal", "replace"),
230 "\x00\x00\x00\x00\x00".decode("unicode-internal", "test.hui"),
255 s.decode("ascii", "test.handler1"),
259 s.decode("ascii", "test.handler2"),
264 "\\u3042\u3xxx".decode("unicode-escape", "test.handler1"),
269 "\\u3042\u3xx".decode("unicode-escape", "test.handler1")
    [all...]

Completed in 2322 milliseconds

<<11121314151617181920>>