HomeSort by relevance Sort by last modified time
    Searched defs:DrawsContent (Results 1 - 13 of 13) sorted by null

  /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.cc 50 bool HeadsUpDisplayLayer::DrawsContent() const { return true; }
image_layer.cc 80 bool ImageLayer::DrawsContent() const {
81 return !bitmap_.isNull() && TiledLayer::DrawsContent();
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();
content_layer.cc 48 bool ContentLayer::DrawsContent() const {
49 return TiledLayer::DrawsContent() && client_;
140 if (!DrawsContent())
ui_resource_layer.cc 143 bool UIResourceLayer::DrawsContent() const {
145 Layer::DrawsContent();
picture_layer.cc 31 bool PictureLayer::DrawsContent() const {
32 return Layer::DrawsContent() && client_;
185 if (!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.cc 800 if (DrawsContent())
874 layer->SetDrawsContent(DrawsContent());
1007 bool Layer::DrawsContent() const {
    [all...]
layer_impl.h 198 bool DrawsContent() const { return draws_content_; }
tiled_layer.cc 169 bool TiledLayer::DrawsContent() const {
170 if (!ContentsScalingLayer::DrawsContent())
732 if (tiler_->has_empty_bounds() || !DrawsContent())
858 tiler_->has_empty_bounds() || !DrawsContent())
  /external/chromium_org/cc/trees/
layer_tree_host_common_unittest.cc 43 virtual bool DrawsContent() const OVERRIDE;
62 bool LayerWithForcedDrawsContent::DrawsContent() const { return true; }
    [all...]

Completed in 184 milliseconds