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

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 230 IntPoint maximumOffset(contentsWidth() - visibleWidth() - scrollOrigin().x(), contentsHeight() - visibleHeight() - scrollOrigin().y());
237 return IntPoint(-scrollOrigin().x(), -scrollOrigin().y());
399 if (scrollOrigin().y() && !newHasHorizontalScrollbar && !scrollbarsAreOverlay)
400 ScrollableArea::setScrollOrigin(IntPoint(scrollOrigin().x(), scrollOrigin().y() - m_horizontalScrollbar->height()));
408 if (scrollOrigin().x() && !newHasVerticalScrollbar && !scrollbarsAreOverlay)
409 ScrollableArea::setScrollOrigin(IntPoint(scrollOrigin().x() - m_verticalScrollbar->width(), scrollOrigin().y()))
    [all...]
ScrollableArea.h 101 const IntPoint& scrollOrigin() const { return m_scrollOrigin; }
135 // scrollPosition is relative to the scrollOrigin. i.e. If the page is RTL
237 // writing-mode / direction scrollOrigin.x() set scrollOrigin.y() set
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.h 113 int scrollXOffset() const { return m_scrollOffset.width() + scrollOrigin().x(); }
114 int scrollYOffset() const { return m_scrollOffset.height() + scrollOrigin().y(); }
244 // This is the (scroll) offset from scrollOrigin().
RenderLayerScrollableArea.cpp 397 return -scrollOrigin();
403 return -scrollOrigin();
405 return -scrollOrigin() + enclosingIntRect(m_overflowRect).size() - enclosingIntRect(m_box->clientBoxRect()).size();
527 scrollToOffsetWithoutAnimation(-scrollOrigin() + newScrollOffset);
550 scrollToOffsetWithoutAnimation(-scrollOrigin() + adjustedScrollOffset());
    [all...]
CompositedLayerMapping.cpp 619 IntPoint scrollOrigin(renderBox->borderLeft(), renderBox->borderTop());
620 graphicsLayerParentLocation = scrollOrigin - scrollOffset;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp     [all...]

Completed in 123 milliseconds