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

1 2

  /external/chromium_org/ppapi/cpp/
video_decoder.h 32 /// - Call GetPicture() continuously (waiting for each previous call to
99 /// GetPicture().
118 /// plugin can call GetPicture() again after the decoder signals completion.
128 /// Returns PP_ERROR_INPROGRESS if there is another GetPicture() call pending.
130 /// completes while GetPicture() is pending.
131 int32_t GetPicture(
145 /// calls to the decoder other than GetPicture() and RecyclePicture() until
147 /// completion, any pending GetPicture() call will complete by running its
161 /// pending calls to Decode() and GetPicture()) abort, causing their callbacks
video_decoder.cc 85 int32_t VideoDecoder::GetPicture(
88 return get_interface<PPB_VideoDecoder_0_2>()->GetPicture(
92 return get_interface<PPB_VideoDecoder_0_1>()->GetPicture(
  /external/chromium_org/ppapi/c/
ppb_video_decoder.h 43 * - 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,
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_Resource video_decoder
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_video_decoder_api.h 34 virtual int32_t GetPicture(PP_VideoPicture* picture,
ppb_video_decoder_thunk.cc 79 int32_t GetPicture(PP_Resource video_decoder,
82 VLOG(4) << "PPB_VideoDecoder::GetPicture()";
86 return enter.SetResult(enter.object()->GetPicture(picture, enter.callback()));
121 &GetPicture,
132 &GetPicture,
  /external/chromium_org/cc/resources/
picture_pile_unittest.cc 190 EXPECT_TRUE(!!picture_info.GetPicture());
192 picture_info.GetPicture()->LayerRect(), min_scale_);
211 EXPECT_TRUE(!!picture_info.GetPicture());
215 const Picture* base_picture = picture_info.GetPicture();
334 EXPECT_FALSE(picture_info.GetPicture()) << "i " << i << " j " << j;
336 EXPECT_TRUE(picture_info.GetPicture()) << "i " << i << " j " << j;
369 EXPECT_TRUE(picture_info.GetPicture()) << "i " << i << " j " << j;
428 ->second.GetPicture());
431 ->second.GetPicture());
612 EXPECT_TRUE(it != map.end() && it->second.GetPicture());
    [all...]
picture_pile_base.cc 142 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 {
picture_pile_base.h 81 const Picture* GetPicture() const;
picture_pile_impl.cc 171 const Picture* picture = info.GetPicture();
400 const Picture* picture = it->second.GetPicture();
417 const Picture* picture = it->second.GetPicture();
picture_pile.cc 222 has_any_recordings_ |= !!it->second.GetPicture();
466 } else if (!info.GetPicture()) {
568 const Picture* picture = it->second.GetPicture();
581 if (it->second.GetPicture() != picture)
  /external/chromium_org/ppapi/api/
ppb_video_decoder.idl 27 * - Call GetPicture() continuously (waiting for each previous call to complete)
142 * GetPicture().
165 * plugin can call GetPicture() again after the decoder signals completion.
179 * Returns PP_ERROR_INPROGRESS if there is another GetPicture() call pending.
181 * completes while GetPicture() is pending.
183 int32_t GetPicture(
206 * calls to the decoder other than GetPicture() and RecyclePicture() until
208 * completion, any pending GetPicture() call will complete by running its
228 * pending calls to Decode() and GetPicture()) abort, causing their callbacks
  /external/chromium_org/cc/layers/
content_layer.h 52 virtual skia::RefPtr<SkPicture> GetPicture() const OVERRIDE;
picture_layer.h 36 virtual skia::RefPtr<SkPicture> GetPicture() const OVERRIDE;
content_layer.cc 143 skia::RefPtr<SkPicture> ContentLayer::GetPicture() const {
picture_layer.cc 176 skia::RefPtr<SkPicture> PictureLayer::GetPicture() const {
picture_layer_impl.h 118 virtual skia::RefPtr<SkPicture> GetPicture() OVERRIDE;
layer.h 427 virtual skia::RefPtr<SkPicture> GetPicture() const;
layer_impl.h 522 virtual skia::RefPtr<SkPicture> GetPicture();
layer.cc 214 skia::RefPtr<SkPicture> Layer::GetPicture() const {
    [all...]
  /external/chromium_org/ppapi/proxy/
video_decoder_resource.h 59 virtual int32_t GetPicture(PP_VideoPicture* picture,
video_decoder_resource.cc 252 int32_t VideoDecoderResource::GetPicture(
306 // Cause any pending Decode or GetPicture callbacks to abort after we return,
406 // The plugin may call GetPicture in its callback.
video_decoder_resource_unittest.cc 184 decoder_iface()->GetPicture(pp_decoder,
284 // Reset to abort Decode and GetPicture callbacks.
437 // Calling GetPicture when another GetPicture is pending should fail.
443 // Send a picture ready message for Decode call 1. The GetPicture callback
452 // GetPicture call, the picture should be queued.
454 // The next GetPicture should return synchronously.
480 // Call GetPicture and send 'picture ready' message to get a picture to
509 // Plugin can call GetPicture while Flush is pending.
528 // Any pending GetPicture call is aborted
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/video_decode/
video_decode.cc 276 // Register callback to get the first picture. We call GetPicture again in
278 decoder_->GetPicture(
345 decoder_->GetPicture(
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 277 // Register callback to get the first picture. We call GetPicture again in
279 decoder_->GetPicture(
346 decoder_->GetPicture(
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 82 skia::RefPtr<SkPicture> picture = layer->GetPicture();
    [all...]

Completed in 5577 milliseconds

1 2