HomeSort by relevance Sort by last modified time
    Searched full:decoder (Results 151 - 175 of 1130) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libvpx/vp8/decoder/
reconintra_mt.h 15 /* reconintra functions used in multi-threaded decoder */
  /external/webkit/Source/WebKit2/Shared/
ShareableBitmap.cpp 49 bool ShareableBitmap::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
51 if (!decoder->decode(handle.m_handle))
53 if (!decoder->decode(handle.m_size))
55 if (!decoder->decode(handle.m_flags))
WebMouseEvent.cpp 93 bool WebMouseEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebMouseEvent& t)
95 if (!WebEvent::decode(decoder, t))
100 return decoder->decode(CoreIPC::Out(t.m_button, t.m_position, t.m_globalPosition, t.m_deltaX, t.m_deltaY, t.m_deltaZ, t.m_clickCount, t.m_didActivateWebView));
102 return decoder->decode(CoreIPC::Out(t.m_button, t.m_position, t.m_globalPosition, t.m_deltaX, t.m_deltaY, t.m_deltaZ, t.m_clickCount));
FontInfo.cpp 44 bool FontInfo::decode(CoreIPC::ArgumentDecoder* decoder, FontInfo& fontInfo)
47 if (!CoreIPC::decode(decoder, fontInfo.fontAttributeDictionary))
OriginAndDatabases.cpp 40 bool OriginAndDatabases::decode(CoreIPC::ArgumentDecoder* decoder, OriginAndDatabases& originAndDatabases)
42 return decoder->decode(CoreIPC::Out(originAndDatabases.originIdentifier, originAndDatabases.originQuota, originAndDatabases.originUsage, originAndDatabases.databases));
PrintInfo.cpp 47 bool PrintInfo::decode(CoreIPC::ArgumentDecoder* decoder, PrintInfo& info)
49 return decoder->decode(CoreIPC::Out(info.pageSetupScaleFactor, info.availablePaperWidth, info.availablePaperHeight));
StringPairVector.h 53 static bool decode(CoreIPC::ArgumentDecoder* decoder, StringPairVector& stringPairVector)
55 return decoder->decode(stringPairVector.m_stringPairVector);
WebEvent.cpp 54 bool WebEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebEvent& t)
56 return decoder->decode(CoreIPC::Out(t.m_type, t.m_modifiers, t.m_timestamp));
  /external/webkit/Source/WebKit2/Shared/gtk/
UpdateChunk.cpp 78 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& chunk)
83 if (!decoder->decode(rect))
89 if (!decoder->decode(hasSharedMemory))
98 if (!decoder->decode(handle))
  /external/webkit/Source/WebKit2/Shared/qt/
UpdateChunk.cpp 77 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& chunk)
82 if (!decoder->decode(rect))
88 if (!decoder->decode(hasSharedMemory))
97 if (!decoder->decode(handle))
  /frameworks/base/core/java/android/util/
Base64OutputStream.java 66 coder = new Base64.Decoder(flags, null);
71 // To avoid invoking the encoder/decoder routines for single
131 * Write the given bytes to the encoder/decoder.
134 * encoder/decoder state to be finalized.
  /frameworks/base/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
Android.mk 33 LOCAL_MODULE := libfwdlock-decoder
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 285 LOGV("got %s decoder EOS", audio ? "audio" : "video");
287 LOGV("got %s decoder EOS w/ error %d",
306 LOGV("decoder %s flush completed", audio ? "audio" : "video");
309 LOGV("initiating %s decoder shutdown",
383 LOGE("Received error from %s decoder, aborting playback.",
594 status_t NuPlayer::instantiateDecoder(bool audio, sp<Decoder> *decoder) {
595 if (*decoder != NULL) {
615 *decoder = audio ? new Decoder(notify)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaProfileReader.java 61 for (AudioDecoder decoder: audioDecoders) {
62 if (decoder == AudioDecoder.AUDIO_DECODER_WMA) {
70 for (VideoDecoder decoder: videoDecoders) {
71 if (decoder == VideoDecoder.VIDEO_DECODER_WMV) {
  /frameworks/media/libvideoeditor/vss/common/inc/
M4PCMR_CoreReader.h 41 * @brief This structure defines the decoder Specific informations
43 * decoder specific informations:
97 M4OSA_MemAddr32 m_pDecoderSpecInfo;/**< Pointer to the decoder specific info
103 M4PCMC_DecoderSpecificInfo m_decoderConfig;/**< Specific configuration for decoder */
M4_Common.h 32 * decoder specific info
45 * @brief This structure defines the structure of specific info for the avc decoder
116 * @brief This enum defines the AAC decoder profile
158 M4_AacDecoderConfig* m_pAacDecoderUserConfig;/**< Decoder specific user setting */
  /frameworks/media/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorAudioDecoder.h 19 * @brief StageFright shell Audio Decoder
VideoEditorVideoDecoder.h 19 * @brief StageFright shell video decoder
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageViewAdapter.java 69 public synchronized void setRegionDecoder(BitmapRegionDecoder decoder) {
70 mRegionDecoder = Utils.checkNotNull(decoder);
71 mImageWidth = decoder.getWidth();
72 mImageHeight = decoder.getHeight();
  /external/chromium/chrome/browser/bookmarks/
bookmark_codec_unittest.cc 123 BookmarkCodec decoder; local
125 EXPECT_EQ("", decoder.computed_checksum());
126 EXPECT_EQ("", decoder.stored_checksum());
129 EXPECT_TRUE(Decode(&decoder, model.get(), value));
131 *computed_checksum = decoder.computed_checksum();
132 const std::string& stored_checksum = decoder.stored_checksum();
263 BookmarkCodec decoder; local
264 ASSERT_TRUE(Decode(&decoder, &decoded_model, *model_value.get()));
  /external/chromium/webkit/glue/
image_resource_fetcher.cc 46 ImageDecoder decoder(gfx::Size(image_size_, image_size_));
47 bitmap = decoder.Decode(
  /external/libvpx/examples/
decode_to_md5.txt 5 This example builds upon the simple decoder loop to show how checksums
7 decoder implementations against the reference implementation, for example.
  /external/webkit/Source/JavaScriptCore/wtf/
Forward.h 39 class Decoder;
59 using WTF::Decoder;
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Attachment.cpp 67 bool Attachment::decode(ArgumentDecoder* decoder, Attachment& attachment)
69 if (!decoder->removeAttachment(attachment))
  /external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
MachPort.h 54 static bool decode(ArgumentDecoder* decoder, MachPort& p)
57 if (!decoder->decode(attachment))

Completed in 279 milliseconds

1 2 3 4 5 67 8 91011>>