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

1 2

  /external/chromium_org/cc/layers/
surface_layer.cc 29 bool SurfaceLayer::DrawsContent() const {
30 return !surface_id_.is_null() && Layer::DrawsContent();
heads_up_display_layer.h 23 virtual bool DrawsContent() const OVERRIDE;
surface_layer.h 25 virtual bool DrawsContent() const OVERRIDE;
io_surface_layer.cc 31 bool IOSurfaceLayer::DrawsContent() const {
32 return io_surface_id_ && Layer::DrawsContent();
ui_resource_layer_unittest.cc 65 EXPECT_FALSE(test_layer->DrawsContent());
74 EXPECT_TRUE(test_layer->DrawsContent());
93 EXPECT_FALSE(test_layer->DrawsContent());
101 EXPECT_TRUE(test_layer->DrawsContent());
image_layer.h 22 virtual bool DrawsContent() const OVERRIDE;
io_surface_layer.h 21 virtual bool DrawsContent() const OVERRIDE;
picture_image_layer.h 25 virtual bool DrawsContent() const OVERRIDE;
nine_patch_layer_unittest.cc 65 EXPECT_FALSE(test_layer->DrawsContent());
77 EXPECT_TRUE(test_layer->DrawsContent());
picture_image_layer.cc 27 bool PictureImageLayer::DrawsContent() const {
28 return !bitmap_.isNull() && PictureLayer::DrawsContent();
content_layer.cc 48 bool ContentLayer::DrawsContent() const {
49 return TiledLayer::DrawsContent() && client_;
140 if (!DrawsContent())
ui_resource_layer.h 23 virtual bool DrawsContent() const OVERRIDE;
image_layer.cc 80 bool ImageLayer::DrawsContent() const {
81 return !bitmap_.isNull() && TiledLayer::DrawsContent();
picture_layer.cc 31 bool PictureLayer::DrawsContent() const {
32 return Layer::DrawsContent() && client_;
185 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 143 bool UIResourceLayer::DrawsContent() const {
145 Layer::DrawsContent();
texture_layer.cc 175 if (rate_limit_context_ && client_ && layer_tree_host() && DrawsContent())
201 bool TextureLayer::DrawsContent() const {
202 return (client_ || holder_ref_) && Layer::DrawsContent();
layer_utils.cc 47 if (!layer_in.DrawsContent())
texture_layer.h 137 virtual bool DrawsContent() const OVERRIDE;
tiled_layer.h 30 virtual bool DrawsContent() const OVERRIDE;
render_surface_impl.cc 188 (!mask_layer->DrawsContent() || mask_layer->bounds().IsEmpty()))
194 (!mask_layer->DrawsContent() || mask_layer->bounds().IsEmpty()))
  /external/chromium_org/cc/trees/
layer_sorter.cc 273 if (!node.layer->DrawsContent() && !render_surface)
310 if (!node_a.layer->DrawsContent() && !node_a.layer->render_surface())
314 if (!node_b.layer->DrawsContent() && !node_b.layer->render_surface())

Completed in 341 milliseconds

1 2