Home
last modified time | relevance | path

Searched refs:startingNode (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/page/
DEventHandler.h148 bool scrollOverflow(ScrollDirection, ScrollGranularity, Node* startingNode = 0);
149 bool logicalScrollOverflow(ScrollLogicalDirection, ScrollGranularity, Node* startingNode = 0);
151 bool scrollRecursively(ScrollDirection, ScrollGranularity, Node* startingNode = 0);
152 … bool logicalScrollRecursively(ScrollLogicalDirection, ScrollGranularity, Node* startingNode = 0);
DEventHandler.cpp1033 …ndler::scrollOverflow(ScrollDirection direction, ScrollGranularity granularity, Node* startingNode) in scrollOverflow() argument
1035 Node* node = startingNode; in scrollOverflow()
1054 …ScrollOverflow(ScrollLogicalDirection direction, ScrollGranularity granularity, Node* startingNode) in logicalScrollOverflow() argument
1056 Node* node = startingNode; in logicalScrollOverflow()
1075 …er::scrollRecursively(ScrollDirection direction, ScrollGranularity granularity, Node* startingNode) in scrollRecursively() argument
1080 if (scrollOverflow(direction, granularity, startingNode)) in scrollRecursively()
1092 …ollRecursively(ScrollLogicalDirection direction, ScrollGranularity granularity, Node* startingNode) in logicalScrollRecursively() argument
1097 if (logicalScrollOverflow(direction, granularity, startingNode)) in logicalScrollRecursively()
/external/webkit/Source/WebCore/dom/
DDocument.cpp2577 Node* startingNode; in previousFocusableNode() local
2580 startingNode = start->traversePreviousNode(); in previousFocusableNode()
2583 startingNode = last; in previousFocusableNode()
2589 for (Node* n = startingNode; n; n = n->traversePreviousNode()) in previousFocusableNode()
2594 if (Node* winner = previousNodeWithExactTabIndex(startingNode, startingTabIndex, event)) in previousFocusableNode()