HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 651 - 675 of 1360) sorted by null

<<21222324252627282930>>

  /frameworks/av/include/media/
mediaplayer.h 110 // The video is too complex for the decoder: it can't decode frames fast
235 static status_t decode(
243 static status_t decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate,
  /frameworks/base/core/java/android/webkit/
URLUtil.java 110 public static byte[] decode(byte[] url) throws IllegalArgumentException { method in class:URLUtil
320 String decodedUrl = Uri.decode(url);
  /frameworks/base/services/core/java/com/android/server/updates/
ConfigUpdateInstallReceiver.java 123 byte[] derCert = Base64.decode(cert.getBytes(), Base64.DEFAULT);
226 return signer.verify(Base64.decode(signature.getBytes(), Base64.DEFAULT));
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
DisplaySinkService.java 100 decode(content);
174 private void decode(ByteBuffer content) { method in class:DisplaySinkService
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
MediaDecoder.java 210 decode(); method
318 private void decode() { method in class:MediaDecoder
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 153 // Decode the bitmap
216 * may load EXIF orientation, and the second pass may do the actual Bitmap decode.
266 return Base64.decode(base64, Base64.URL_SAFE);
270 return Base64.decode(base64, Base64.DEFAULT);
  /hardware/intel/common/libmix/videodecoder/securevideo/baytrail/
VideoDecoderAVCSecure.cpp 78 Decode_Status VideoDecoderAVCSecure::decode(VideoDecodeBuffer *buffer) { function in class:VideoDecoderAVCSecure
94 return VideoDecoderAVC::decode(buffer);
353 ETRACE("Unsupported Decode Slice Mode!");
  /hardware/intel/common/libmix/videodecoder/securevideo/cherrytrail/
VideoDecoderAVCSecure.cpp 78 Decode_Status VideoDecoderAVCSecure::decode(VideoDecodeBuffer *buffer) { function in class:VideoDecoderAVCSecure
94 return VideoDecoderAVC::decode(buffer);
337 ETRACE("Unsupported Decode Slice Mode!");
  /libcore/luni/src/main/java/java/net/
URI.java 127 * <p>To decode a URI, invoke the single-string constructor, and then use the
1263 private String decode(String s) { method in class:URI
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
Charset.java 37 * {@code Charset} can <i>decode</i>, converting a byte sequence into a sequence of characters,
476 public final CharBuffer decode(ByteBuffer buffer) { method in class:Charset
480 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode(buffer);
CharsetDecoderICU.java 112 int error = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, true);
138 int error = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, false);
  /libcore/luni/src/main/java/java/security/cert/
X509CRLSelector.java 419 bytes = (byte[]) ASN1OctetString.getInstance().decode(bytes);
421 ASN1Integer.getInstance().decode(bytes));
X509CertSelector.java 535 ((SubjectPublicKeyInfo) SubjectPublicKeyInfo.ASN1.decode(key))
801 : (NameConstraints) NameConstraints.ASN1.decode(bytes);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 91 this.rawString = (String) DirectoryString.ASN1.decode(in);
180 return (Collection<?>) new ASN1SetOf(type).decode(encoded);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AccountAvatarDrawable.java 174 decode(); method
186 private void decode() { method in class:AccountAvatarDrawable
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 72 (why, stdout.decode(), stderr.decode()))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_file_eintr.py 72 (why, stdout.decode(), stderr.decode()))
  /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
583 // Our decode step always sets things up properly, so if this method is ever
610 decode(true);
660 decode(false);
788 void JPEGImageDecoder::decode(bool onlySize) function in class:WebCore::JPEGImageDecoder
797 // If we couldn't decode the image but we've received all the data, decoding
799 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
  /frameworks/base/core/java/android/net/
Uri.java 1582 names.add(decode(name)); method
1929 public static String decode(String s) { method in class:Uri
2157 segmentBuilder.add(decode(path.substring(previous))); method
    [all...]
  /external/chromium_org/v8/src/
objects-inl.h     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickletools.py 262 def read_stringnl(f, decode=True, stripquotes=True):
307 if decode:
308 data = data.decode('string_escape')
322 return read_stringnl(f, decode=False, stripquotes=False)
497 s = read_stringnl(f, decode=False, stripquotes=False)
532 s = read_stringnl(f, decode=False, stripquotes=False)
568 s = read_stringnl(f, decode=False, stripquotes=False)
835 # arg.reader(s) can be used to read and decode the argument from
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickletools.py 262 def read_stringnl(f, decode=True, stripquotes=True):
307 if decode:
308 data = data.decode('string_escape')
322 return read_stringnl(f, decode=False, stripquotes=False)
497 s = read_stringnl(f, decode=False, stripquotes=False)
532 s = read_stringnl(f, decode=False, stripquotes=False)
568 s = read_stringnl(f, decode=False, stripquotes=False)
835 # arg.reader(s) can be used to read and decode the argument from
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp 201 // Otherwise, decoding failed; returns false in this case, which will always cause the GIFImageReader to set the "decode failed" flag.
322 // Returns false if a decoding error occurred. This is a fatal error and causes the GIFImageReader to set the "decode failed" flag.
323 // Otherwise, either not enough data is available to decode further than before, or the new data has been decoded successfully; returns true in this case.
324 bool GIFFrameContext::decode(const unsigned char* data, size_t length, WebCore::GIFImageDecoder* client, bool* frameDecoded) function in class:GIFFrameContext
343 // Some bad GIFs have extra blocks beyond the last row, which we don't want to decode.
363 // Decode a frame.
364 // This method uses GIFFrameContext:decode() to decode the frame; decoding error is reported to client as a critical failure.
366 bool GIFImageReader::decode(size_t frameIndex) function in class:GIFImageReader
373 return currentFrame->decode(data(0), m_data->size(), m_client, &frameDecoded
    [all...]
  /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

Completed in 1776 milliseconds

<<21222324252627282930>>