HomeSort by relevance Sort by last modified time
    Searched refs:GetPicture (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/ppapi/cpp/
video_decoder.h 32 /// - Call GetPicture() continuously (waiting for each previous call to
100 /// GetPicture().
119 /// plugin can call GetPicture() again after the decoder signals completion.
131 /// Returns PP_ERROR_INPROGRESS if there is another GetPicture() call pending.
133 /// completes while GetPicture() is pending.
134 int32_t GetPicture(
148 /// calls to the decoder other than GetPicture() and RecyclePicture() until
150 /// completion, any pending GetPicture() call will complete by running its
164 /// pending calls to Decode() and GetPicture()) abort, causing their callbacks
video_decoder.cc 64 int32_t VideoDecoder::GetPicture(
67 return get_interface<PPB_VideoDecoder_0_1>()->GetPicture(
  /external/chromium_org/ppapi/thunk/
ppb_video_decoder_api.h 30 virtual int32_t GetPicture(PP_VideoPicture* picture,
ppb_video_decoder_thunk.cc 64 int32_t GetPicture(PP_Resource video_decoder,
67 VLOG(4) << "PPB_VideoDecoder::GetPicture()";
71 return enter.SetResult(enter.object()->GetPicture(picture, enter.callback()));
106 &GetPicture,
  /external/chromium_org/ppapi/c/
ppb_video_decoder.h 40 * - Call GetPicture() continuously (waiting for each previous call to complete)
121 * GetPicture().
142 * plugin can call GetPicture() again after the decoder signals completion.
156 * Returns PP_ERROR_INPROGRESS if there is another GetPicture() call pending.
158 * completes while GetPicture() is pending.
160 int32_t (*GetPicture)(PP_Resource video_decoder,
179 * calls to the decoder other than GetPicture() and RecyclePicture() until
181 * completion, any pending GetPicture() call will complete by running its
199 * pending calls to Decode() and GetPicture()) abort, causing their callbacks
  /external/chromium_org/cc/resources/
picture_pile_unittest.cc 98 EXPECT_TRUE(!!picture_info.GetPicture());
100 picture_info.GetPicture()->LayerRect(), min_scale_);
121 EXPECT_TRUE(!!picture_info.GetPicture());
125 Picture* base_picture = picture_info.GetPicture();
226 EXPECT_FALSE(picture_info.GetPicture()) << "i " << i << " j " << j;
228 EXPECT_TRUE(picture_info.GetPicture()) << "i " << i << " j " << j;
260 EXPECT_TRUE(picture_info.GetPicture()) << "i " << i << " j " << j;
321 ->second.GetPicture());
324 ->second.GetPicture());
picture_pile_base.cc 123 has_any_recordings_ |= !!it->second.GetPicture();
191 return !!found->second.GetPicture();
221 if (!map_iter->second.GetPicture())
251 Picture* picture = map_iter->second.GetPicture();
300 Picture* PicturePileBase::PictureInfo::GetPicture() const {
picture_pile_base.h 72 Picture* GetPicture() const;
picture_pile_impl.cc 204 Picture* picture = info.GetPicture();
434 const Picture* picture = it->second.GetPicture();
451 Picture* picture = it->second.GetPicture();
picture_pile.cc 227 } else if (!info.GetPicture()) {
  /external/chromium_org/ppapi/api/
ppb_video_decoder.idl 25 * - Call GetPicture() continuously (waiting for each previous call to complete)
112 * GetPicture().
135 * plugin can call GetPicture() again after the decoder signals completion.
149 * Returns PP_ERROR_INPROGRESS if there is another GetPicture() call pending.
151 * completes while GetPicture() is pending.
153 int32_t GetPicture(
176 * calls to the decoder other than GetPicture() and RecyclePicture() until
178 * completion, any pending GetPicture() call will complete by running its
198 * pending calls to Decode() and GetPicture()) abort, causing their callbacks
  /external/chromium_org/cc/layers/
content_layer.h 55 virtual skia::RefPtr<SkPicture> GetPicture() const OVERRIDE;
picture_layer.h 37 virtual skia::RefPtr<SkPicture> GetPicture() const OVERRIDE;
content_layer.cc 139 skia::RefPtr<SkPicture> ContentLayer::GetPicture() const {
picture_layer.cc 181 skia::RefPtr<SkPicture> PictureLayer::GetPicture() const {
picture_layer_impl.h 100 virtual skia::RefPtr<SkPicture> GetPicture() OVERRIDE;
layer.h 425 virtual skia::RefPtr<SkPicture> GetPicture() const;
layer_impl.h 506 virtual skia::RefPtr<SkPicture> GetPicture();
layer.cc 210 skia::RefPtr<SkPicture> Layer::GetPicture() const {
    [all...]
layer_impl.cc 485 skia::RefPtr<SkPicture> LayerImpl::GetPicture() {
    [all...]
  /external/chromium_org/ppapi/proxy/
video_decoder_resource.h 54 virtual int32_t GetPicture(PP_VideoPicture* picture,
video_decoder_resource.cc 239 int32_t VideoDecoderResource::GetPicture(
293 // Cause any pending Decode or GetPicture callbacks to abort after we return,
393 // The plugin may call GetPicture in its callback.
video_decoder_resource_unittest.cc 185 decoder_iface()->GetPicture(pp_decoder,
285 // Reset to abort Decode and GetPicture callbacks.
438 // Calling GetPicture when another GetPicture is pending should fail.
444 // Send a picture ready message for Decode call 1. The GetPicture callback
453 // GetPicture call, the picture should be queued.
455 // The next GetPicture should return synchronously.
481 // Call GetPicture and send 'picture ready' message to get a picture to
510 // Plugin can call GetPicture while Flush is pending.
529 // Any pending GetPicture call is aborted
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 274 // Register callback to get the first picture. We call GetPicture again in
276 decoder_->GetPicture(
343 decoder_->GetPicture(
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 82 skia::RefPtr<SkPicture> picture = layer->GetPicture();
    [all...]

Completed in 635 milliseconds

1 2