HomeSort by relevance Sort by last modified time
    Searched refs:stopNode (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderListBox.h 73 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier = 1, Node** stopNode = 0);
74 virtual bool logicalScroll(ScrollLogicalDirection, ScrollGranularity, float multiplier = 1, Node** stopNode = 0);
RenderTextControlSingleLine.h 85 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier = 1, Node** stopNode = 0);
86 virtual bool logicalScroll(ScrollLogicalDirection, ScrollGranularity, float multiplier = 1, Node** stopNode = 0);
RenderTextControlSingleLine.cpp     [all...]
RenderBox.cpp 609 bool RenderBox::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode)
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)
642 if (stopNode)
643 *stopNode = node()
    [all...]
RenderBox.h 324 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier = 1, Node** stopNode = 0);
325 virtual bool logicalScroll(ScrollLogicalDirection, ScrollGranularity, float multiplier = 1, Node** stopNode = 0);
  /external/webkit/Source/WebCore/dom/
Range.cpp     [all...]
  /external/webkit/Source/WebCore/page/
EventHandler.cpp 137 static inline bool scrollNode(float delta, WheelEvent::Granularity granularity, ScrollDirection positiveDirection, ScrollDirection negativeDirection, Node* node, Node** stopNode)
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);
    [all...]
  /external/webkit/Source/WebCore/editing/
ReplaceSelectionCommand.cpp 121 Node* stopNode = pos.deprecatedNode()->enclosingBlockFlowElement();
122 while (stopNode != pos.deprecatedNode() && VisiblePosition(pos) == VisiblePosition(pos.next()))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 825 stopNode = self._lastRecursiveChild().next
827 while current is not stopNode:
    [all...]

Completed in 474 milliseconds