Searched defs:stopNode (Results 1 - 5 of 5) sorted by path

/external/webkit/Source/WebCore/dom/
H A DRange.cpp1631 Node* stopNode = pastLastNode();
1632 for (Node* node = firstNode(); node != stopNode; node = node->traverseNextNode()) {
1651 Node* stopNode = pastLastNode();
1652 for (Node* node = firstNode(); node != stopNode; node = node->traverseNextNode()) {
1941 Node* stopNode = pastLastNode(); local
1944 for (Node* node = firstNode(); node != stopNode; node = node->traverseNextNode()) {
1949 for (Node* node = firstNode(); node != stopNode; node = node->traverseNextNode()) {
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp137 static inline bool scrollNode(float delta, WheelEvent::Granularity granularity, ScrollDirection positiveDirection, ScrollDirection negativeDirection, Node* node, Node** stopNode) argument
151 return enclosingBox->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByPage, absDelta, stopNode);
154 return enclosingBox->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByLine, absDelta, stopNode);
157 return enclosingBox->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByPixel, absDelta, stopNode);
2178 Node* stopNode = m_previousWheelScrolledNode.get();
2182 if (scrollNode(wheelEvent->rawDeltaX(), wheelEvent->granularity(), ScrollLeft, ScrollRight, startNode, &stopNode))
2185 if (scrollNode(wheelEvent->rawDeltaY(), wheelEvent->granularity(), ScrollUp, ScrollDown, startNode, &stopNode))
2189 m_previousWheelScrolledNode = stopNode;
/external/webkit/Source/WebCore/rendering/
H A DRenderBox.cpp609 bool RenderBox::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode) argument
613 if (stopNode)
614 *stopNode = node();
618 if (stopNode && *stopNode && *stopNode == node())
623 return b->scroll(direction, granularity, multiplier, stopNode);
627 bool RenderBox::logicalScroll(ScrollLogicalDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode) argument
642 if (stopNode)
643 *stopNode
[all...]
H A DRenderTextControlSingleLine.cpp1081 bool RenderTextControlSingleLine::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode) argument
1086 return RenderBlock::scroll(direction, granularity, multiplier, stopNode);
1089 bool RenderTextControlSingleLine::logicalScroll(ScrollLogicalDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode) argument
1094 return RenderBlock::logicalScroll(direction, granularity, multiplier, stopNode);
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp1666 Node* stopNode = range->pastLastNode(); local
1667 for (Node* node = range->firstNode(); node != stopNode; node = node->traverseNextNode()) {

Completed in 152 milliseconds