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

  /external/webkit/WebCore/platform/gtk/
ScrollViewGtk.cpp 153 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()),
166 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()),
  /external/webkit/WebCore/platform/
PopupMenu.h 123 void setScrollOffset(int offset) { m_scrollOffset = offset; }
124 int scrollOffset() const { return m_scrollOffset; }
170 int m_scrollOffset;
ScrollView.cpp 182 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()),
252 IntSize newOffset = m_scrollOffset;
260 IntSize scrollDelta = newOffset - m_scrollOffset;
263 m_scrollOffset = newOffset;
484 IntSize scrollDelta = scroll - m_scrollOffset;
486 m_scrollOffset = scroll;
691 updateScrollbars(m_scrollOffset);
    [all...]
ScrollView.h 266 IntSize m_scrollOffset; // FIXME: Would rather store this as a position, but we will wait to make this change until more code is shared.
320 void setScrollOffset(const IntSize& offset) { m_scrollOffset = offset; }
  /external/webkit/WebCore/platform/win/
PopupMenuWin.cpp 96 , m_scrollOffset(0)
402 return m_scrollOffset + point.y() / m_itemHeight;
482 damageRect.setY(m_itemHeight * (index - m_scrollOffset));
524 if (index < m_scrollOffset) {
529 if (index >= m_scrollOffset + visibleItems()) {
598 listRect.move(IntSize(0, m_scrollOffset * m_itemHeight));
614 IntRect itemRect(0, (index - m_scrollOffset) * m_itemHeight, damageRect.width(), m_itemHeight);
672 if (m_scrollOffset == offset)
675 int scrolledLines = m_scrollOffset - offset;
676 m_scrollOffset = offset
    [all...]

Completed in 65 milliseconds