OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DrawsContent
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/cc/layers/
picture_image_layer.cc
27
bool PictureImageLayer::
DrawsContent
() const {
28
return !bitmap_.isNull() && PictureLayer::
DrawsContent
();
heads_up_display_layer.cc
50
bool HeadsUpDisplayLayer::
DrawsContent
() const { return true; }
image_layer.cc
79
bool ImageLayer::
DrawsContent
() const {
80
return !bitmap_.isNull() && TiledLayer::
DrawsContent
();
io_surface_layer.cc
31
bool IOSurfaceLayer::
DrawsContent
() const {
32
return io_surface_id_ && Layer::
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
())
ui_resource_layer.cc
142
bool UIResourceLayer::
DrawsContent
() const {
144
Layer::
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
();
layer.cc
811
if (
DrawsContent
())
891
layer->SetDrawsContent(
DrawsContent
());
1011
bool Layer::
DrawsContent
() const {
[
all
...]
layer_impl.h
184
bool
DrawsContent
() const { 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_tree_host_common_unittest.cc
186
virtual bool
DrawsContent
() const OVERRIDE;
192
bool LayerWithForcedDrawsContent::
DrawsContent
() const { return true; }
[
all
...]
Completed in 89 milliseconds