OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:scroll_parent
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/cc/trees/
tree_synchronizer_unittest.cc
140
const Layer* layer_scroll_parent = layer->
scroll_parent
();
141
const LayerImpl* layer_impl_scroll_parent = layer_impl->
scroll_parent
();
591
scoped_refptr<Layer>
scroll_parent
= Layer::Create();
local
592
layer_tree_root->AddChild(
scroll_parent
);
599
layer_tree_root->children()[1]->SetScrollParent(
scroll_parent
);
600
layer_tree_root->children()[2]->SetScrollParent(
scroll_parent
);
627
additional_scroll_child->SetScrollParent(
scroll_parent
);
639
scroll_parent
->RemoveFromParent();
640
scroll_parent
= NULL;
653
EXPECT_FALSE(layer_tree_root->children()[0]->
scroll_parent
());
[
all
...]
layer_tree_host_common_unittest.cc
9085
scoped_refptr<LayerWithForcedDrawsContent>
scroll_parent
=
local
9162
scoped_refptr<LayerWithForcedDrawsContent>
scroll_parent
=
local
9242
scoped_refptr<LayerWithForcedDrawsContent>
scroll_parent
=
local
9368
scoped_refptr<LayerWithForcedDrawsContent>
scroll_parent
=
local
9527
scoped_ptr<LayerImpl>
scroll_parent
=
local
[
all
...]
/external/chromium_org/webkit/renderer/compositor_bindings/
web_layer_impl.cc
436
cc::Layer*
scroll_parent
= NULL;
local
438
scroll_parent
= static_cast<WebLayerImpl*>(parent)->layer();
439
layer_->SetScrollParent(
scroll_parent
);
/external/chromium_org/cc/layers/
layer.cc
925
LayerImpl*
scroll_parent
= NULL;
local
927
scroll_parent
= layer->layer_tree_impl()->LayerById(scroll_parent_->id());
929
layer->SetScrollParent(
scroll_parent
);
[
all
...]
layer.h
191
Layer*
scroll_parent
() { return scroll_parent_; }
function in class:cc::Layer
192
const Layer*
scroll_parent
() const { return scroll_parent_; }
function in class:cc::Layer
layer_impl.cc
545
LayerImpl*
scroll_parent
= NULL;
local
547
scroll_parent
= layer->layer_tree_impl()->LayerById(scroll_parent_->id());
549
layer->SetScrollParent(
scroll_parent
);
[
all
...]
layer_impl.h
107
LayerImpl*
scroll_parent
() { return scroll_parent_; }
function in class:cc::LayerImpl
108
const LayerImpl*
scroll_parent
() const { return scroll_parent_; }
function in class:cc::LayerImpl
Completed in 451 milliseconds