HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 426 - 450 of 568) sorted by null

<<11121314151617181920>>

  /external/skia/include/core/
SkImageDecoder.h 44 /** Return the format of image this decoder can decode. If this decoder can decode multiple
89 /** Returns true if the decoder should try to decode the
95 /** Set to true if the the decoder should try to decode the
171 * to some flavor of decode, it is still at the discretion of the codec
193 * decode is preferred.
223 cancel. This will result in decode() returning false. However, there is
226 and decode() will return true (assuming no other problems were
229 This state is automatically reset at the beginning of decode().
237 /** Passed to the decode method. If kDecodeBounds_Mode is passed, the
269 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder
    [all...]
  /external/v8/src/
utils.h 216 // BitField is a help template for encoding and decode bitfield with
246 static T decode(uint32_t value) { function in class:v8::internal::BitField
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegDecoder.cpp 183 int ExynosJpegDecoder::decode(void) function in class:ExynosJpegDecoder
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 61 public void decode(InputStream in) { method in class:Identity2Test.CertificateImpl
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 195 * A fast version of URLDecoder.decode() that works only with UTF-8 and does only two
383 private static String decode(Charset charset, byte[] b) { method in class:Utility
387 final CharBuffer cb = charset.decode(ByteBuffer.wrap(b));
398 return decode(UTF_8, b);
408 return decode(ASCII, b);
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
real.h 120 void (*decode) (const struct real_format *, REAL_VALUE_TYPE *, member in struct:real_format
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 120 void (*decode) (const struct real_format *, REAL_VALUE_TYPE *, member in struct:real_format
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
real.h 120 void (*decode) (const struct real_format *, REAL_VALUE_TYPE *, member in struct:real_format
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 120 void (*decode) (const struct real_format *, REAL_VALUE_TYPE *, member in struct:real_format
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this? member in class:UserString
70 return self.__class__(self.data.decode(encoding, errors))
72 return self.__class__(self.data.decode(encoding))
74 return self.__class__(self.data.decode())
_pyio.py 105 encoding is the name of the encoding used to decode or encode the
1376 def decode(self, input, final=False): member in class:IncrementalNewlineDecoder
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this? member in class:UserString
70 return self.__class__(self.data.decode(encoding, errors))
72 return self.__class__(self.data.decode(encoding))
74 return self.__class__(self.data.decode())
  /cts/tests/tests/media/src/android/media/cts/
Vp8EncoderTest.java 72 decode(BASIC_IVF);
105 * being properly encoded is trying to decode it.
111 * whenever vp8 decoder fails to decode a frame, and
116 private void decode(String filename) throws Exception { method in class:Vp8EncoderTest
143 // decode loop
172 //decode failure.
173 fail("Failed to decode frame at index " + frameIndex);
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/
backportPP.pm 111 sub decode_json { # decode
112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_);
149 sub decode { subroutine
369 if ( OLD_PERL ) { utf8::decode($k) } # key for Perl 5.6 / be optimized
671 sprintf("attempted decode of JSON text of %s bytes size, but max_size is set to %s"
754 utf8::decode($s) if($is_utf8);
    [all...]
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/
backportPP.pm 111 sub decode_json { # decode
112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_);
149 sub decode { subroutine
369 if ( OLD_PERL ) { utf8::decode($k) } # key for Perl 5.6 / be optimized
671 sprintf("attempted decode of JSON text of %s bytes size, but max_size is set to %s"
754 utf8::decode($s) if($is_utf8);
    [all...]
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/
backportPP.pm 111 sub decode_json { # decode
112 ($JSON ||= __PACKAGE__->new->utf8)->decode(@_);
149 sub decode { subroutine
369 if ( OLD_PERL ) { utf8::decode($k) } # key for Perl 5.6 / be optimized
671 sprintf("attempted decode of JSON text of %s bytes size, but max_size is set to %s"
754 utf8::decode($s) if($is_utf8);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 325 bool decode(const SharedBuffer& data, bool onlySize) function in class:WebCore::JPEGImageReader
582 // Our decode step always sets things up properly, so if this method is ever
608 decode(true);
658 decode(false);
786 void JPEGImageDecoder::decode(bool onlySize) function in class:WebCore::JPEGImageDecoder
795 // If we couldn't decode the image but we've received all the data, decoding
797 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
  /external/chromium_org/third_party/skia/src/utils/
SkMD5.cpp 25 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]);
124 const uint32_t* X = decode(storage, block);
235 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]) { function
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 174 /*!\brief decode data function pointer prototype
306 vpx_codec_decode_fn_t decode; /**< \copydoc ::vpx_codec_decode_fn_t */ member in struct:vpx_codec_iface::vpx_codec_dec_iface
  /external/skia/src/utils/
SkMD5.cpp 25 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]);
124 const uint32_t* X = decode(storage, block);
235 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]) { function
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
MediaDecoder.java 210 decode(); method
318 private void decode() { method in class:MediaDecoder
  /packages/apps/Camera2/src/com/android/camera/crop/
CropView.java 273 private int decode(int movingEdges, float rotation) { method in class:CropView
373 mScreenCropBounds, mCropObj.isFixedAspect(), decode(mCropObj.getSelectState(), mRotation));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropView.java 274 private int decode(int movingEdges, float rotation) { method in class:CropView
374 mScreenCropBounds, mCropObj.isFixedAspect(), decode(mCropObj.getSelectState(), mRotation));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 216 private int decode(int movingEdges, float rotation) { method in class:ImageCrop
321 decode(mCropObj.getSelectState(), mGeometry.rotation.value()));
  /packages/apps/UnifiedEmail/src/com/android/bitmap/
DecodeTask.java 19 * decode is complete, even if the task is cancelled, the result is placed in the given cache.
20 * A {@link BitmapView} client may be notified on decode begin and completion.
25 * GIFs are supported, but their decode does not reuse bitmaps at all. The resulting
47 * The decode task uses this class to get input to decode. You must implement at least one of
60 * Callback interface for clients to be notified of decode state changes and completion.
152 // disable inBitmap-- bitmap reuse doesn't work with different decode regions due
200 "decode thread wants a bitmap. cache dump:\n" + mCache.toDebugString());
210 if (DEBUG) System.err.println("*** allocated new bitmap in decode thread: "
213 if (DEBUG) System.out.println("*** reusing existing bitmap in decode thread:
399 private Bitmap decode(AssetFileDescriptor fd, InputStream in) { method in class:DecodeTask
    [all...]

Completed in 1108 milliseconds

<<11121314151617181920>>