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

  /external/webkit/WebCore/rendering/
RenderListBox.h 71 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier = 1.0f, Node** stopNode = 0);
RenderTextControlSingleLine.h 75 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier = 1.0f, Node** stopNode = 0);
RenderBox.cpp 417 bool RenderBox::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode)
421 if (stopNode)
422 *stopNode = node();
426 if (stopNode && *stopNode && *stopNode == node())
431 return b->scroll(direction, granularity, multiplier, stopNode);
    [all...]
RenderBox.h 248 virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier = 1.0f, Node** stopNode = 0);
RenderTextControlSingleLine.cpp 826 bool RenderTextControlSingleLine::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode)
831 return RenderBlock::scroll(direction, granularity, multiplier, stopNode);
  /external/webkit/WebCore/dom/
Range.cpp     [all...]
  /external/webkit/WebCore/page/
EventHandler.cpp 115 static inline void scrollAndAcceptEvent(float delta, ScrollDirection positiveDirection, ScrollDirection negativeDirection, PlatformWheelEvent& e, Node* node, Node** stopNode)
124 if (enclosingBox->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByPage, 1, stopNode))
130 if (enclosingBox->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByPixel, pixelsToScroll, stopNode))
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 825 stopNode = self._lastRecursiveChild().next
827 while current is not stopNode:
    [all...]

Completed in 514 milliseconds