Searched refs:startingNode (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | SimplifyMarkupCommand.cpp | 55 Node* startingNode = node->parentNode(); in doApply() local 56 if (!startingNode) in doApply() 58 RenderStyle* startingStyle = startingNode->renderStyle(); in doApply() 61 Node* currentNode = startingNode; in doApply() 85 … for (Node* node = startingNode; node != topNodeWithStartingStyle; node = node->parentNode()) in doApply()
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | FocusController.cpp | 549 Node* startingNode; in previousFocusableNode() local 552 startingNode = NodeTraversal::previous(*start); in previousFocusableNode() 555 startingNode = last; in previousFocusableNode() 561 for (Node* node = startingNode; node; node = NodeTraversal::previous(*node)) { in previousFocusableNode() 567 …if (Node* winner = findNodeWithExactTabIndex(startingNode, startingTabIndex, FocusDirectionBackwar… in previousFocusableNode()
|
D | EventHandler.h | 132 bool scrollOverflow(ScrollDirection, ScrollGranularity, Node* startingNode = 0); 133 bool scrollRecursively(ScrollDirection, ScrollGranularity, Node* startingNode = 0);
|
D | EventHandler.cpp | 967 …ndler::scrollOverflow(ScrollDirection direction, ScrollGranularity granularity, Node* startingNode) in scrollOverflow() argument 969 Node* node = startingNode; in scrollOverflow() 988 …er::scrollRecursively(ScrollDirection direction, ScrollGranularity granularity, Node* startingNode) in scrollRecursively() argument 993 if (scrollOverflow(direction, granularity, startingNode)) in scrollRecursively()
|