Searched defs:GetPicture (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/ppapi/c/
H A Dppb_video_decoder.h43 * - Call GetPicture() continuously (waiting for each previous call to complete)
123 * GetPicture().
144 * plugin can call GetPicture() again after the decoder signals completion.
158 * Returns PP_ERROR_INPROGRESS if there is another GetPicture() call pending.
160 * completes while GetPicture() is pending.
162 int32_t (*GetPicture)(PP_Resource video_decoder, member in struct:PPB_VideoDecoder_0_2
181 * calls to the decoder other than GetPicture() and RecyclePicture() until
183 * completion, any pending GetPicture() call will complete by running its
201 * pending calls to Decode() and GetPicture()) abort, causing their callbacks
235 int32_t (*GetPicture)(PP_Resourc member in struct:PPB_VideoDecoder_0_1
[all...]
/external/chromium_org/ppapi/cpp/
H A Dvideo_decoder.cc85 int32_t VideoDecoder::GetPicture( function in class:pp::VideoDecoder
88 return get_interface<PPB_VideoDecoder_0_2>()->GetPicture(
92 return get_interface<PPB_VideoDecoder_0_1>()->GetPicture(
/external/chromium_org/ppapi/thunk/
H A Dppb_video_decoder_thunk.cc79 int32_t GetPicture(PP_Resource video_decoder, function in namespace:ppapi::thunk::__anon10322
82 VLOG(4) << "PPB_VideoDecoder::GetPicture()";
86 return enter.SetResult(enter.object()->GetPicture(picture, enter.callback()));
121 &GetPicture,
132 &GetPicture,
/external/chromium_org/cc/layers/
H A Dcontent_layer.cc143 skia::RefPtr<SkPicture> ContentLayer::GetPicture() const { function in class:cc::ContentLayer
H A Dpicture_layer.cc176 skia::RefPtr<SkPicture> PictureLayer::GetPicture() const { function in class:cc::PictureLayer
H A Dlayer.cc214 skia::RefPtr<SkPicture> Layer::GetPicture() const { function in class:cc::Layer
H A Dlayer_impl.cc496 skia::RefPtr<SkPicture> LayerImpl::GetPicture() { function in class:cc::LayerImpl
H A Dpicture_layer_impl.cc606 skia::RefPtr<SkPicture> PictureLayerImpl::GetPicture() { function in class:cc::PictureLayerImpl
/external/chromium_org/cc/resources/
H A Dpicture_pile_base.cc142 return !!found->second.GetPicture();
172 if (!map_iter->second.GetPicture())
201 const Picture* picture = map_iter->second.GetPicture();
249 const Picture* PicturePileBase::PictureInfo::GetPicture() const { function in class:cc::PicturePileBase::PictureInfo
/external/chromium_org/ppapi/proxy/
H A Dvideo_decoder_resource.cc252 int32_t VideoDecoderResource::GetPicture( function in class:ppapi::proxy::VideoDecoderResource
306 // Cause any pending Decode or GetPicture callbacks to abort after we return,
406 // The plugin may call GetPicture in its callback.

Completed in 191 milliseconds