OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DrawsContent
(Results
26 - 39
of
39
) sorted by null
1
2
/external/chromium_org/cc/layers/
layer.cc
811
if (
DrawsContent
())
891
layer->SetDrawsContent(
DrawsContent
());
1011
bool Layer::
DrawsContent
() const {
[
all
...]
layer.h
356
virtual bool
DrawsContent
() const;
layer_impl.h
184
bool
DrawsContent
() const { return draws_content_; }
picture_layer_impl.cc
565
if (!
DrawsContent
()) {
[
all
...]
layer_impl.cc
513
layer->SetDrawsContent(
DrawsContent
());
613
result->SetBoolean("
DrawsContent
", draws_content_);
[
all
...]
picture_layer_impl_unittest.cc
[
all
...]
/external/chromium_org/cc/trees/
layer_tree_host_common.cc
391
if (!layer->
DrawsContent
() || layer->content_bounds().IsEmpty() ||
478
if (!layer->
DrawsContent
() && !can_accept_input)
624
(layer->
DrawsContent
() || num_descendants_that_draw_content > 1);
[
all
...]
occlusion_tracker.cc
402
if (!layer->
DrawsContent
())
layer_tree_host.cc
[
all
...]
layer_tree_host_unittest.cc
187
EXPECT_FALSE(layer->
DrawsContent
());
208
EXPECT_TRUE(layer->
DrawsContent
());
[
all
...]
layer_tree_host_impl.cc
820
} else if (it.represents_itself() && it->
DrawsContent
() &&
[
all
...]
layer_tree_host_common_unittest.cc
186
virtual bool
DrawsContent
() const OVERRIDE;
192
bool LayerWithForcedDrawsContent::
DrawsContent
() const { return true; }
[
all
...]
/external/chromium_org/webkit/renderer/compositor_bindings/
web_layer_impl.cc
170
bool WebLayerImpl::
drawsContent
() const { return layer_->
DrawsContent
(); }
/external/chromium_org/ui/compositor/
layer_unittest.cc
616
EXPECT_TRUE(l1->cc_layer()->
DrawsContent
());
631
EXPECT_TRUE(l1->cc_layer()->
DrawsContent
());
[
all
...]
Completed in 615 milliseconds
1
2