/external/chromium_org/cc/trees/ |
tree_synchronizer.h | 14 class LayerImpl; 20 // Accepts a Layer tree and returns a reference to a LayerImpl tree that 23 static scoped_ptr<LayerImpl> SynchronizeTrees( 25 scoped_ptr<LayerImpl> old_layer_impl_root, 27 static scoped_ptr<LayerImpl> SynchronizeTrees( 28 LayerImpl* layer_root, 29 scoped_ptr<LayerImpl> old_layer_impl_root, 32 // Pushes properties from a Layer or LayerImpl tree to a structurally 33 // equivalent LayerImpl tree. 35 LayerImpl* layer_impl_root) [all...] |
quad_culler.h | 13 class LayerImpl; 21 const LayerImpl* layer, 22 const OcclusionTrackerBase<LayerImpl, RenderSurfaceImpl>& 37 const LayerImpl* layer_; 38 const OcclusionTrackerBase<LayerImpl, RenderSurfaceImpl>& occlusion_tracker_;
|
tree_synchronizer.cc | 20 typedef base::ScopedPtrHashMap<int, LayerImpl> ScopedPtrLayerImplMap; 21 typedef base::hash_map<int, LayerImpl*> RawPtrLayerImplMap; 24 scoped_ptr<LayerImpl> layer_impl) { 42 scoped_ptr<LayerImpl> SynchronizeTreesInternal( 44 scoped_ptr<LayerImpl> old_layer_impl_root, 54 scoped_ptr<LayerImpl> new_tree = SynchronizeTreesRecursive( 62 scoped_ptr<LayerImpl> TreeSynchronizer::SynchronizeTrees( 64 scoped_ptr<LayerImpl> old_layer_impl_root, 70 scoped_ptr<LayerImpl> TreeSynchronizer::SynchronizeTrees( 71 LayerImpl* layer_root [all...] |
layer_tree_impl.h | 23 struct hash<cc::LayerImpl*> { 24 size_t operator()(cc::LayerImpl* ptr) const { 75 LayerImpl* FindActiveTreeLayerById(int id); 76 LayerImpl* FindPendingTreeLayerById(int id); 100 LayerImpl* root_layer() const { return root_layer_.get(); } 101 void SetRootLayer(scoped_ptr<LayerImpl>); 102 scoped_ptr<LayerImpl> DetachLayerTree(); 116 LayerImpl* RootScrollLayer() const; 117 LayerImpl* RootContainerLayer() const; 118 LayerImpl* CurrentlyScrollingLayer() const [all...] |
damage_tracker.h | 23 class LayerImpl; 41 LayerImpl* target_surface_mask_layer, 52 gfx::RectF TrackDamageFromSurfaceMask(LayerImpl* target_surface_mask_layer); 58 void ExtendDamageForLayer(LayerImpl* layer, gfx::RectF* target_damage_rect); 59 void ExtendDamageForRenderSurface(LayerImpl* layer,
|
/external/chromium_org/cc/debug/ |
debug_rect_history.h | 17 class LayerImpl; 79 LayerImpl* root_layer, 90 void SavePaintRects(LayerImpl* layer); 101 void SaveTouchEventHandlerRects(LayerImpl* layer); 102 void SaveTouchEventHandlerRectsCallback(LayerImpl* layer); 103 void SaveWheelEventHandlerRects(LayerImpl* layer); 104 void SaveWheelEventHandlerRectsCallback(LayerImpl* layer); 105 void SaveNonFastScrollableRects(LayerImpl* layer); 106 void SaveNonFastScrollableRectsCallback(LayerImpl* layer);
|
micro_benchmark_impl.h | 20 class LayerImpl; 34 virtual void RunOnLayer(LayerImpl* layer);
|
rasterize_and_record_benchmark_impl.h | 19 class LayerImpl; 33 void Run(LayerImpl* layer);
|
/external/chromium_org/cc/test/ |
fake_delegated_renderer_layer.cc | 17 scoped_ptr<LayerImpl> FakeDelegatedRendererLayer::CreateLayerImpl( 20 tree_impl, layer_id_).PassAs<LayerImpl>();
|
fake_picture_layer.cc | 23 scoped_ptr<LayerImpl> FakePictureLayer::CreateLayerImpl( 25 return FakePictureLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); 35 void FakePictureLayer::PushPropertiesTo(LayerImpl* layer) {
|
fake_layer_tree_host.cc | 23 LayerImpl* FakeLayerTreeHost::CommitAndCreateLayerImplTree() { 24 scoped_ptr<LayerImpl> old_root_layer_impl = active_tree()->DetachLayerTree(); 26 scoped_ptr<LayerImpl> layer_impl = TreeSynchronizer::SynchronizeTrees(
|
/external/chromium_org/cc/layers/ |
layer_impl.h | 65 class CC_EXPORT LayerImpl : public LayerAnimationValueObserver, 72 static scoped_ptr<LayerImpl> Create(LayerTreeImpl* tree_impl, int id) { 73 return make_scoped_ptr(new LayerImpl(tree_impl, id)); 76 virtual ~LayerImpl(); 92 LayerImpl* parent() { return parent_; } 93 const LayerImpl* parent() const { return parent_; } 96 LayerImpl* child_at(size_t index) const { return children_[index]; } 97 void AddChild(scoped_ptr<LayerImpl> child); 98 scoped_ptr<LayerImpl> RemoveChild(LayerImpl* child) [all...] |
layer_impl.cc | 33 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id) 81 LayerImpl::~LayerImpl() { 92 for (std::set<LayerImpl*>::iterator it = scroll_children_->begin(); 101 for (std::set<LayerImpl*>::iterator it = clip_children_->begin(); 110 void LayerImpl::AddChild(scoped_ptr<LayerImpl> child) { 117 scoped_ptr<LayerImpl> LayerImpl::RemoveChild(LayerImpl* child) [all...] |
solid_color_layer.cc | 11 scoped_ptr<LayerImpl> SolidColorLayer::CreateLayerImpl( 13 return SolidColorLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
|
solid_color_layer_impl.h | 14 class CC_EXPORT SolidColorLayerImpl : public LayerImpl { 22 // LayerImpl overrides. 23 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
|
io_surface_layer.cc | 26 scoped_ptr<LayerImpl> IOSurfaceLayer::CreateLayerImpl( 28 return IOSurfaceLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>(); 35 void IOSurfaceLayer::PushPropertiesTo(LayerImpl* layer) {
|
io_surface_layer_impl.h | 16 class CC_EXPORT IOSurfaceLayerImpl : public LayerImpl { 26 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) 28 virtual void PushPropertiesTo(LayerImpl* layer_tree_impl) OVERRIDE;
|
layer_lists.h | 16 class LayerImpl; 20 typedef ScopedPtrVector<LayerImpl> OwnedLayerImplList; 21 typedef std::vector<LayerImpl*> LayerImplList;
|
nine_patch_layer.cc | 25 scoped_ptr<LayerImpl> NinePatchLayer::CreateLayerImpl( 27 return NinePatchLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>(); 53 void NinePatchLayer::PushPropertiesTo(LayerImpl* layer) {
|
render_surface_unittest.cc | 40 scoped_ptr<LayerImpl> owning_layer = 41 LayerImpl::Create(host_impl.active_tree(), 1); 64 scoped_ptr<LayerImpl> dummy_mask = 65 LayerImpl::Create(host_impl.active_tree(), 2); 84 scoped_ptr<LayerImpl> root_layer = 85 LayerImpl::Create(host_impl.active_tree(), 1); 87 scoped_ptr<LayerImpl> owning_layer = 88 LayerImpl::Create(host_impl.active_tree(), 2); 147 scoped_ptr<LayerImpl> root_layer = 148 LayerImpl::Create(host_impl.active_tree(), 1) [all...] |
io_surface_layer.h | 19 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) 22 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
|
nine_patch_layer.h | 24 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE; 45 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
|
solid_color_scrollbar_layer_impl.h | 23 // LayerImpl overrides. 24 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) 26 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
|
video_layer.cc | 21 scoped_ptr<LayerImpl> VideoLayer::CreateLayerImpl(LayerTreeImpl* tree_impl) { 22 return VideoLayerImpl::Create(tree_impl, id(), provider_).PassAs<LayerImpl>();
|
/external/chromium_org/cc/animation/ |
scrollbar_animation_controller_thinning.h | 13 class LayerImpl; 20 LayerImpl* scroll_layer); 23 LayerImpl* scroll_layer, 47 ScrollbarAnimationControllerThinning(LayerImpl* scroll_layer, 70 LayerImpl* scroll_layer_;
|