Searched refs:adoptiveTree (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/page/scrolling/
H A DScrollingStateNode.cpp50 ScrollingStateNode::ScrollingStateNode(const ScrollingStateNode& stateNode, ScrollingStateTree& adoptiveTree) argument
54 , m_scrollingStateTree(adoptiveTree)
58 setLayer(stateNode.layer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
75 PassRefPtr<ScrollingStateNode> ScrollingStateNode::cloneAndReset(ScrollingStateTree& adoptiveTree) argument
77 RefPtr<ScrollingStateNode> clone = this->clone(adoptiveTree);
82 cloneAndResetChildren(*clone, adoptiveTree);
86 void ScrollingStateNode::cloneAndResetChildren(ScrollingStateNode& clone, ScrollingStateTree& adoptiveTree) argument
92 clone.appendChild(child->cloneAndReset(adoptiveTree));
H A DScrollingStateOverflowScrollingNode.cpp47 ScrollingStateOverflowScrollingNode::ScrollingStateOverflowScrollingNode(const ScrollingStateOverflowScrollingNode& stateNode, ScrollingStateTree& adoptiveTree) argument
48 : ScrollingStateScrollingNode(stateNode, adoptiveTree)
51 setScrolledContentsLayer(stateNode.scrolledContentsLayer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
58 PassRefPtr<ScrollingStateNode> ScrollingStateOverflowScrollingNode::clone(ScrollingStateTree& adoptiveTree) argument
60 return adoptRef(new ScrollingStateOverflowScrollingNode(*this, adoptiveTree));
H A DScrollingStateFixedNode.cpp48 ScrollingStateFixedNode::ScrollingStateFixedNode(const ScrollingStateFixedNode& node, ScrollingStateTree& adoptiveTree) argument
49 : ScrollingStateNode(node, adoptiveTree)
58 PassRefPtr<ScrollingStateNode> ScrollingStateFixedNode::clone(ScrollingStateTree& adoptiveTree) argument
60 return adoptRef(new ScrollingStateFixedNode(*this, adoptiveTree));
H A DScrollingStateFrameScrollingNode.cpp59 ScrollingStateFrameScrollingNode::ScrollingStateFrameScrollingNode(const ScrollingStateFrameScrollingNode& stateNode, ScrollingStateTree& adoptiveTree) argument
60 : ScrollingStateScrollingNode(stateNode, adoptiveTree)
77 setScrolledContentsLayer(stateNode.scrolledContentsLayer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
80 setCounterScrollingLayer(stateNode.counterScrollingLayer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
83 setInsetClipLayer(stateNode.insetClipLayer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
86 setContentShadowLayer(stateNode.contentShadowLayer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
89 setHeaderLayer(stateNode.headerLayer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
92 setFooterLayer(stateNode.footerLayer().toRepresentation(adoptiveTree.preferredLayerRepresentation()));
99 PassRefPtr<ScrollingStateNode> ScrollingStateFrameScrollingNode::clone(ScrollingStateTree& adoptiveTree) argument
101 return adoptRef(new ScrollingStateFrameScrollingNode(*this, adoptiveTree));
[all...]
H A DScrollingStateStickyNode.cpp48 ScrollingStateStickyNode::ScrollingStateStickyNode(const ScrollingStateStickyNode& node, ScrollingStateTree& adoptiveTree) argument
49 : ScrollingStateNode(node, adoptiveTree)
58 PassRefPtr<ScrollingStateNode> ScrollingStateStickyNode::clone(ScrollingStateTree& adoptiveTree) argument
60 return adoptRef(new ScrollingStateStickyNode(*this, adoptiveTree));
H A DScrollingStateScrollingNode.cpp43 ScrollingStateScrollingNode::ScrollingStateScrollingNode(const ScrollingStateScrollingNode& stateNode, ScrollingStateTree& adoptiveTree) argument
44 : ScrollingStateNode(stateNode, adoptiveTree)
H A DScrollingStateNode.h200 virtual PassRefPtr<ScrollingStateNode> clone(ScrollingStateTree& adoptiveTree) = 0;
201 PassRefPtr<ScrollingStateNode> cloneAndReset(ScrollingStateTree& adoptiveTree);
202 void cloneAndResetChildren(ScrollingStateNode&, ScrollingStateTree& adoptiveTree);

Completed in 148 milliseconds