OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DrawsContent
(Results
1 - 25
of
39
) sorted by null
1
2
/external/chromium_org/cc/layers/
heads_up_display_layer.h
23
virtual bool
DrawsContent
() const OVERRIDE;
io_surface_layer.cc
31
bool IOSurfaceLayer::
DrawsContent
() const {
32
return io_surface_id_ && Layer::
DrawsContent
();
picture_image_layer.cc
27
bool PictureImageLayer::
DrawsContent
() const {
28
return !bitmap_.isNull() && PictureLayer::
DrawsContent
();
picture_image_layer.h
25
virtual bool
DrawsContent
() const OVERRIDE;
image_layer.h
22
virtual bool
DrawsContent
() const OVERRIDE;
io_surface_layer.h
21
virtual bool
DrawsContent
() const OVERRIDE;
ui_resource_layer_unittest.cc
68
EXPECT_FALSE(test_layer->
DrawsContent
());
78
EXPECT_TRUE(test_layer->
DrawsContent
());
98
EXPECT_FALSE(test_layer->
DrawsContent
());
110
EXPECT_TRUE(test_layer->
DrawsContent
());
nine_patch_layer_unittest.cc
65
EXPECT_FALSE(test_layer->
DrawsContent
());
81
EXPECT_TRUE(test_layer->
DrawsContent
());
ui_resource_layer.h
23
virtual bool
DrawsContent
() const OVERRIDE;
image_layer.cc
79
bool ImageLayer::
DrawsContent
() const {
80
return !bitmap_.isNull() && TiledLayer::
DrawsContent
();
texture_layer.cc
170
if (!uses_mailbox_ && layer_tree_host() && (
DrawsContent
() ||
180
if (rate_limit_context_ && client_ && layer_tree_host() &&
DrawsContent
())
212
bool TextureLayer::
DrawsContent
() const {
213
return (client_ || texture_id_ || holder_ref_) && Layer::
DrawsContent
();
272
content_committed_ =
DrawsContent
();
content_layer.cc
64
bool ContentLayer::
DrawsContent
() const {
65
return TiledLayer::
DrawsContent
() && client_;
154
if (!
DrawsContent
())
picture_layer.cc
29
bool PictureLayer::
DrawsContent
() const {
30
return Layer::
DrawsContent
() && client_;
145
if (!
DrawsContent
())
content_layer.h
43
virtual bool
DrawsContent
() const OVERRIDE;
heads_up_display_layer.cc
50
bool HeadsUpDisplayLayer::
DrawsContent
() const { return true; }
heads_up_display_unittest.cc
26
virtual bool
DrawsContent
() const OVERRIDE { return true; }
picture_layer.h
27
virtual bool
DrawsContent
() const OVERRIDE;
ui_resource_layer.cc
142
bool UIResourceLayer::
DrawsContent
() const {
144
Layer::
DrawsContent
();
texture_layer.h
138
virtual bool
DrawsContent
() const OVERRIDE;
tiled_layer.h
30
virtual bool
DrawsContent
() const OVERRIDE;
render_surface_impl.cc
186
(!mask_layer->
DrawsContent
() || mask_layer->bounds().IsEmpty()))
192
(!mask_layer->
DrawsContent
() || mask_layer->bounds().IsEmpty()))
layer_iterator_unittest.cc
34
virtual bool
DrawsContent
() const OVERRIDE { return draws_content_; }
tiled_layer.cc
168
bool TiledLayer::
DrawsContent
() const {
169
if (!ContentsScalingLayer::
DrawsContent
())
750
if (tiler_->has_empty_bounds() || !
DrawsContent
())
876
tiler_->has_empty_bounds() || !
DrawsContent
())
[
all
...]
/external/chromium_org/cc/trees/
layer_sorter.cc
272
if (!node.layer->
DrawsContent
() && !render_surface)
309
if (!node_a.layer->
DrawsContent
() && !node_a.layer->render_surface())
313
if (!node_b.layer->
DrawsContent
() && !node_b.layer->render_surface())
/external/chromium_org/cc/debug/
debug_rect_history.cc
72
if (!layer->update_rect().IsEmpty() && layer->
DrawsContent
()) {
Completed in 145 milliseconds
1
2