Searched refs:tree_impl (Results 1 - 25 of 87) sorted by relevance

1234

/external/chromium_org/cc/test/
H A Dfake_content_layer_impl.cc9 FakeContentLayerImpl::FakeContentLayerImpl(LayerTreeImpl* tree_impl, int id) argument
10 : TiledLayerImpl(tree_impl, id), lost_output_surface_count_(0) {
16 LayerTreeImpl* tree_impl) {
17 return FakeContentLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
15 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
H A Dfake_content_layer_impl.h16 LayerTreeImpl* tree_impl, int id) {
17 return make_scoped_ptr(new FakeContentLayerImpl(tree_impl, id));
21 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
34 explicit FakeContentLayerImpl(LayerTreeImpl* tree_impl, int id);
15 Create( LayerTreeImpl* tree_impl, int id) argument
H A Dfake_delegated_renderer_layer_impl.h15 LayerTreeImpl* tree_impl, int id) {
16 return make_scoped_ptr(new FakeDelegatedRendererLayerImpl(tree_impl, id));
20 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
32 FakeDelegatedRendererLayerImpl(LayerTreeImpl* tree_impl, int id);
14 Create( LayerTreeImpl* tree_impl, int id) argument
H A Dfake_delegated_renderer_layer.cc18 LayerTreeImpl* tree_impl) {
20 tree_impl, layer_id_).PassAs<LayerImpl>();
17 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
H A Dfake_delegated_renderer_layer.h20 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
H A Dfake_picture_layer_impl.h16 LayerTreeImpl* tree_impl, int id) {
17 return make_scoped_ptr(new FakePictureLayerImpl(tree_impl, id));
22 LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile) {
23 return make_scoped_ptr(new FakePictureLayerImpl(tree_impl, id, pile));
28 LayerTreeImpl* tree_impl,
33 new FakePictureLayerImpl(tree_impl, id, pile, layer_bounds));
36 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
123 LayerTreeImpl* tree_impl,
126 FakePictureLayerImpl(LayerTreeImpl* tree_impl,
130 FakePictureLayerImpl(LayerTreeImpl* tree_impl, in
15 Create( LayerTreeImpl* tree_impl, int id) argument
21 CreateWithPile( LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile) argument
27 CreateWithPartialPile( LayerTreeImpl* tree_impl, int id, scoped_refptr<PicturePileImpl> pile, const gfx::Size& layer_bounds) argument
[all...]
/external/chromium_org/cc/debug/
H A Ddebug_colors.h18 static int TiledContentLayerBorderWidth(const LayerTreeImpl* tree_impl);
21 static int ImageLayerBorderWidth(const LayerTreeImpl* tree_impl);
24 static int ContentLayerBorderWidth(const LayerTreeImpl* tree_impl);
27 static int MaskingLayerBorderWidth(const LayerTreeImpl* tree_impl);
30 static int ContainerLayerBorderWidth(const LayerTreeImpl* tree_impl);
33 static int SurfaceLayerBorderWidth(const LayerTreeImpl* tree_impl);
36 static int SurfaceBorderWidth(const LayerTreeImpl* tree_impl);
39 static int SurfaceReplicaBorderWidth(const LayerTreeImpl* tree_impl);
42 static int HighResTileBorderWidth(const LayerTreeImpl* tree_impl);
45 static int LowResTileBorderWidth(const LayerTreeImpl* tree_impl);
[all...]
H A Ddebug_colors.cc13 static float Scale(float width, const LayerTreeImpl* tree_impl) { argument
14 return width * (tree_impl ? tree_impl->device_scale_factor() : 1);
23 int DebugColors::TiledContentLayerBorderWidth(const LayerTreeImpl* tree_impl) { argument
24 return Scale(2, tree_impl);
31 int DebugColors::ImageLayerBorderWidth(const LayerTreeImpl* tree_impl) { argument
32 return Scale(2, tree_impl);
39 int DebugColors::ContentLayerBorderWidth(const LayerTreeImpl* tree_impl) { argument
40 return Scale(2, tree_impl);
47 int DebugColors::MaskingLayerBorderWidth(const LayerTreeImpl* tree_impl) { argument
55 ContainerLayerBorderWidth(const LayerTreeImpl* tree_impl) argument
63 SurfaceLayerBorderWidth(const LayerTreeImpl* tree_impl) argument
71 SurfaceBorderWidth(const LayerTreeImpl* tree_impl) argument
79 SurfaceReplicaBorderWidth(const LayerTreeImpl* tree_impl) argument
89 HighResTileBorderWidth(const LayerTreeImpl* tree_impl) argument
97 LowResTileBorderWidth(const LayerTreeImpl* tree_impl) argument
105 ExtraHighResTileBorderWidth(const LayerTreeImpl* tree_impl) argument
113 ExtraLowResTileBorderWidth(const LayerTreeImpl* tree_impl) argument
121 MissingTileBorderWidth(const LayerTreeImpl* tree_impl) argument
129 SolidColorTileBorderWidth(const LayerTreeImpl* tree_impl) argument
137 PictureTileBorderWidth(const LayerTreeImpl* tree_impl) argument
145 DirectPictureBorderWidth(const LayerTreeImpl* tree_impl) argument
[all...]
/external/chromium_org/cc/layers/
H A Dpicture_image_layer_impl.h14 static scoped_ptr<PictureImageLayerImpl> Create(LayerTreeImpl* tree_impl, argument
16 return make_scoped_ptr(new PictureImageLayerImpl(tree_impl, id));
23 LayerTreeImpl* tree_impl) OVERRIDE;
26 PictureImageLayerImpl(LayerTreeImpl* tree_impl, int id);
H A Dio_surface_layer_impl.h18 static scoped_ptr<IOSurfaceLayerImpl> Create(LayerTreeImpl* tree_impl, argument
20 return make_scoped_ptr(new IOSurfaceLayerImpl(tree_impl, id));
26 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
39 IOSurfaceLayerImpl(LayerTreeImpl* tree_impl, int id);
H A Dpicture_image_layer_impl.cc14 PictureImageLayerImpl::PictureImageLayerImpl(LayerTreeImpl* tree_impl, int id) argument
15 : PictureLayerImpl(tree_impl, id) {
26 LayerTreeImpl* tree_impl) {
27 return PictureImageLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
25 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
H A Dsolid_color_layer_impl.h16 static scoped_ptr<SolidColorLayerImpl> Create(LayerTreeImpl* tree_impl, argument
18 return make_scoped_ptr(new SolidColorLayerImpl(tree_impl, id));
32 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
39 SolidColorLayerImpl(LayerTreeImpl* tree_impl, int id);
H A Dsurface_layer_impl.h17 static scoped_ptr<SurfaceLayerImpl> Create(LayerTreeImpl* tree_impl, int id) { argument
18 return make_scoped_ptr(new SurfaceLayerImpl(tree_impl, id));
25 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
33 SurfaceLayerImpl(LayerTreeImpl* tree_impl, int id);
H A Dsolid_color_layer.cc12 LayerTreeImpl* tree_impl) {
13 return SolidColorLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
11 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
H A Dsolid_color_scrollbar_layer_impl.cc14 LayerTreeImpl* tree_impl,
22 new SolidColorScrollbarLayerImpl(tree_impl,
34 LayerTreeImpl* tree_impl) {
35 return SolidColorScrollbarLayerImpl::Create(tree_impl,
46 LayerTreeImpl* tree_impl,
53 : ScrollbarLayerImplBase(tree_impl,
60 color_(tree_impl->settings().solid_color_scrollbar_color) {
13 Create( LayerTreeImpl* tree_impl, int id, ScrollbarOrientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar, bool is_overlay) argument
33 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
45 SolidColorScrollbarLayerImpl( LayerTreeImpl* tree_impl, int id, ScrollbarOrientation orientation, int thumb_thickness, int track_start, bool is_left_side_vertical_scrollbar, bool is_overlay) argument
H A Dsolid_color_scrollbar_layer_impl.h16 LayerTreeImpl* tree_impl,
26 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
35 SolidColorScrollbarLayerImpl(LayerTreeImpl* tree_impl,
H A Dsurface_layer.cc26 scoped_ptr<LayerImpl> SurfaceLayer::CreateLayerImpl(LayerTreeImpl* tree_impl) { argument
27 return SurfaceLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
H A Dnine_patch_layer_impl.h26 static scoped_ptr<NinePatchLayerImpl> Create(LayerTreeImpl* tree_impl, argument
28 return make_scoped_ptr(new NinePatchLayerImpl(tree_impl, id));
60 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
71 NinePatchLayerImpl(LayerTreeImpl* tree_impl, int id);
H A Dsolid_color_layer.h20 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
H A Dsurface_layer_impl.cc14 SurfaceLayerImpl::SurfaceLayerImpl(LayerTreeImpl* tree_impl, int id) argument
15 : LayerImpl(tree_impl, id) {
21 LayerTreeImpl* tree_impl) {
22 return SurfaceLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
20 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
H A Dui_resource_layer_impl.h25 static scoped_ptr<UIResourceLayerImpl> Create(LayerTreeImpl* tree_impl, argument
27 return make_scoped_ptr(new UIResourceLayerImpl(tree_impl, id));
42 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
55 UIResourceLayerImpl(LayerTreeImpl* tree_impl, int id);
H A Dio_surface_layer.cc28 LayerTreeImpl* tree_impl) {
29 return IOSurfaceLayerImpl::Create(tree_impl, layer_id_).PassAs<LayerImpl>();
27 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
H A Dnine_patch_layer.cc26 LayerTreeImpl* tree_impl) {
27 return NinePatchLayerImpl::Create(tree_impl, id()).PassAs<LayerImpl>();
25 CreateLayerImpl( LayerTreeImpl* tree_impl) argument
H A Dvideo_layer.cc25 scoped_ptr<LayerImpl> VideoLayer::CreateLayerImpl(LayerTreeImpl* tree_impl) { argument
27 VideoLayerImpl::Create(tree_impl, id(), provider_, video_rotation_);
/external/chromium_org/cc/trees/
H A Dtree_synchronizer.cc54 LayerTreeImpl* tree_impl) {
55 DCHECK(tree_impl);
64 &new_layers, &old_layers, layer_root, tree_impl);
74 LayerTreeImpl* tree_impl) {
76 layer_root, old_layer_impl_root.Pass(), tree_impl);
82 LayerTreeImpl* tree_impl) {
84 layer_root, old_layer_impl_root.Pass(), tree_impl);
91 LayerTreeImpl* tree_impl) {
95 layer_impl = layer->CreateLayerImpl(tree_impl);
106 LayerTreeImpl* tree_impl) {
51 SynchronizeTreesInternal( LayerType* layer_root, scoped_ptr<LayerImpl> old_layer_impl_root, LayerTreeImpl* tree_impl) argument
71 SynchronizeTrees( Layer* layer_root, scoped_ptr<LayerImpl> old_layer_impl_root, LayerTreeImpl* tree_impl) argument
79 SynchronizeTrees( LayerImpl* layer_root, scoped_ptr<LayerImpl> old_layer_impl_root, LayerTreeImpl* tree_impl) argument
88 ReuseOrCreateLayerImpl(RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, LayerType* layer, LayerTreeImpl* tree_impl) argument
102 SynchronizeTreesRecursiveInternal( RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, LayerType* layer, LayerTreeImpl* tree_impl) argument
127 SynchronizeTreesRecursive( RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, Layer* layer, LayerTreeImpl* tree_impl) argument
136 SynchronizeTreesRecursive( RawPtrLayerImplMap* new_layers, ScopedPtrLayerImplMap* old_layers, LayerImpl* layer, LayerTreeImpl* tree_impl) argument
[all...]

Completed in 243 milliseconds

1234