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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
palmos.py 15 def decode(self,input,errors='strict'): member in class:Codec
23 def decode(self, input, final=False): member in class:IncrementalDecoder
38 decode=Codec().decode,
zlib_codec.py 4 will return Python string objects for both encode and decode.
50 def decode(self, input, errors='strict'): member in class:Codec
75 def decode(self, input, final=False): member in class:IncrementalDecoder
97 decode=zlib_decode,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
Required_Suite.py 32 # XXXX Optionally decode result
52 # XXXX Optionally decode result
71 # XXXX Optionally decode result
90 # XXXX Optionally decode result
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
iterators.py 37 def body_line_iterator(msg, decode=False):
40 Optional decode (default False) is passed through to .get_payload().
43 payload = subpart.get_payload(decode=decode)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
bz2_codec.py 4 will return Python string objects for both encode and decode.
51 def decode(self, input, errors='strict'): member in class:Codec
76 def decode(self, input, final=False): member in class:IncrementalDecoder
97 decode=bz2_decode,
palmos.py 15 def decode(self,input,errors='strict'): member in class:Codec
23 def decode(self, input, final=False): member in class:IncrementalDecoder
38 decode=Codec().decode,
zlib_codec.py 4 will return Python string objects for both encode and decode.
50 def decode(self, input, errors='strict'): member in class:Codec
75 def decode(self, input, final=False): member in class:IncrementalDecoder
97 decode=zlib_decode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /external/skia/include/core/
SkImageDecoder.h 47 /** Return the format of image this decoder can decode. If this decoder can decode multiple
101 /** Returns true if the decoder should try to decode the
107 /** Set to true if the the decoder should try to decode the
135 * that is passed to decode() or decodeSubset(). However, this can be called
166 cancel. This will result in decode() returning false. However, there is
169 and decode() will return true (assuming no other problems were
172 This state is automatically reset at the beginning of decode().
180 /** Passed to the decode method. If kDecodeBounds_Mode is passed, then
189 /** Result of a decode. If read as a boolean, a partial success i
222 Result decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder
    [all...]
  /external/libvorbis/doc/
01-introduction.tex 12 understanding of the Vorbis decode process, which is
40 encoder and simple, low-complexity decoder. Vorbis decode is
62 end before or after packet decode expects.
91 flag in each audio packet, or begin decode at any frame in the stream
96 Vorbis \emph{can} initiate decode at any arbitrary packet within a
101 Thus, Vorbis headers are both required for decode to begin and
116 The Vorbis format is well-defined by its decode specification; any
124 Although Vorbis decode is computationally simple, it may still run
127 `full' decode specification yet still be certified compliant. These
134 component abstractions that perform specific functions in the decode
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ShortTest.java 62 * java.lang.Short#decode(java.lang.String)
66 // java.lang.Short.decode(java.lang.String)
67 assertTrue("Did not decode -1 correctly", Short.decode("-1")
69 assertTrue("Did not decode -100 correctly", Short.decode("-100")
71 assertTrue("Did not decode 23 correctly", Short.decode("23")
73 assertTrue("Did not decode 0x10 correctly", Short.decode("0x10"
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sqs/
message.py 48 The Message class must provide a decode method that accepts a string of characters that can be
119 self.set_body(self.decode(self.get_body()))
125 def decode(self, value): member in class:RawMessage
162 for details on why this is a good idea. The encode/decode is meant to
169 return base64.b64encode(value).decode('utf-8')
171 def decode(self, value): member in class:Message
173 value = base64.b64decode(value.encode('utf-8')).decode('utf-8')
175 boto.log.warning('Unable to decode message')
196 def decode(self, value): member in class:MHMessage
208 raise SQSDecodeError('Unable to decode message', self
261 def decode(self, value): member in class:EncodedMHMessage
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedLongsTest.java 146 assertEquals(0xffffffffffffffffL, UnsignedLongs.decode("0xffffffffffffffff"));
147 assertEquals(01234567, UnsignedLongs.decode("01234567")); // octal
148 assertEquals(0x1234567890abcdefL, UnsignedLongs.decode("#1234567890abcdef"));
149 assertEquals(987654321012345678L, UnsignedLongs.decode("987654321012345678"));
150 assertEquals(0x135791357913579L, UnsignedLongs.decode("0x135791357913579"));
151 assertEquals(0x135791357913579L, UnsignedLongs.decode("0X135791357913579"));
152 assertEquals(0L, UnsignedLongs.decode("0"));
158 UnsignedLongs.decode("0xfffffffffffffffff");
164 UnsignedLongs.decode("-5");
170 UnsignedLongs.decode("-0x5")
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntsTest.java 218 assertEquals(0xffffffff, UnsignedInts.decode("0xffffffff"));
219 assertEquals(01234567, UnsignedInts.decode("01234567")); // octal
220 assertEquals(0x12345678, UnsignedInts.decode("#12345678"));
221 assertEquals(76543210, UnsignedInts.decode("76543210"));
222 assertEquals(0x13579135, UnsignedInts.decode("0x13579135"));
223 assertEquals(0x13579135, UnsignedInts.decode("0X13579135"));
224 assertEquals(0, UnsignedInts.decode("0"));
230 UnsignedInts.decode("0xfffffffff");
236 UnsignedInts.decode("-5");
242 UnsignedInts.decode("-0x5")
    [all...]
UnsignedLongsTest.java 163 assertEquals(0xffffffffffffffffL, UnsignedLongs.decode("0xffffffffffffffff"));
164 assertEquals(01234567, UnsignedLongs.decode("01234567")); // octal
165 assertEquals(0x1234567890abcdefL, UnsignedLongs.decode("#1234567890abcdef"));
166 assertEquals(987654321012345678L, UnsignedLongs.decode("987654321012345678"));
167 assertEquals(0x135791357913579L, UnsignedLongs.decode("0x135791357913579"));
168 assertEquals(0x135791357913579L, UnsignedLongs.decode("0X135791357913579"));
169 assertEquals(0L, UnsignedLongs.decode("0"));
175 UnsignedLongs.decode("0xfffffffffffffffff");
181 UnsignedLongs.decode("-5");
187 UnsignedLongs.decode("-0x5")
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
codec_test.go 59 // Test basic encode/decode routines for unsigned integers
77 t.Errorf("Encode/Decode: sent %#x received %#x", u, v)
94 t.Errorf("Encode/Decode: sent %#x received %#x", uint64(i), uint64(j))
98 // Test basic encode/decode routines for signed integers
586 err = NewDecoder(b).Decode(&_t1)
588 t.Fatal("decode:", err)
629 err = dec.Decode(&o1)
638 err = dec.Decode(&o1)
654 err = dec.Decode(&o2)
663 err = dec.Decode(&o2
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
codec_test.go 59 // Test basic encode/decode routines for unsigned integers
77 t.Errorf("Encode/Decode: sent %#x received %#x", u, v)
94 t.Errorf("Encode/Decode: sent %#x received %#x", uint64(i), uint64(j))
98 // Test basic encode/decode routines for signed integers
586 err = NewDecoder(b).Decode(&_t1)
588 t.Fatal("decode:", err)
629 err = dec.Decode(&o1)
638 err = dec.Decode(&o1)
654 err = dec.Decode(&o2)
663 err = dec.Decode(&o2
    [all...]
  /art/test/004-UnsafeTest/
unsafe_test.cc 29 mirror::Class* klass = soa.Decode<mirror::Class*>(classObj);
36 mirror::Class* klass = soa.Decode<mirror::Class*>(classObj);
  /external/apache-http/src/org/apache/commons/codec/
BinaryDecoder.java 42 * the decode process.
44 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
  /external/autotest/client/site_tests/video_ChromeHWDecodeUsed/
control.h264 7 PURPOSE = "Verify that H.264 video decode acceleration works in Chrome"
25 This test verifies H.264 video decode acceleration works.
control.h264.mse 7 PURPOSE = "Verify that H.264 decode acceleration works for MSE videos in Chrome"
25 This test verifies H.264 decode acceleration works for MSE videos.
control.vp8 7 PURPOSE = "Verify that VP8 video decode acceleration works in Chrome"
25 This test verifies VP8 video decode acceleration works.
control.vp8.mse 7 PURPOSE = "Verify that VP8 decode acceleration works for MSE videos in Chrome"
25 This test verifies VP8 decode acceleration works for MSE videos.
control.vp9 7 PURPOSE = "Verify that VP9 video decode acceleration works in Chrome"
25 This test verifies VP9 video decode acceleration works.

Completed in 423 milliseconds

<<11121314151617181920>>