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

  /external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxy.cpp 52 m_scrollOffset += scrollOffset;
DrawingAreaProxy.h 102 WebCore::IntSize m_scrollOffset;
DrawingAreaProxyImpl.cpp 280 m_webPageProxy->process()->send(Messages::DrawingArea::UpdateBackingStoreState(m_nextBackingStoreStateID, respondImmediatelyOrNot == RespondImmediately, m_size, m_scrollOffset), m_webPageProxy->pageID());
281 m_scrollOffset = IntSize();
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
Layer.h 52 const IntPoint& getScrollOffset() const { return m_scrollOffset; }
64 void setScrollOffset(IntPoint scrollOffset) { m_scrollOffset = scrollOffset; }
173 IntPoint m_scrollOffset;
Layer.cpp 44 m_scrollOffset = src.m_scrollOffset;
126 matrix->setTranslate(m_position.fX - m_scrollOffset.x(),
127 m_position.fY - m_scrollOffset.y());
  /external/webkit/Source/WebCore/platform/gtk/
ScrollViewGtk.cpp 172 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()),
189 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()),
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.h 82 int scrollOffset() const { return m_scrollOffset; }
122 int m_scrollOffset;
PopupMenuWin.cpp 98 , m_scrollOffset(0)
411 return m_scrollOffset + point.y() / m_itemHeight;
491 damageRect.setY(m_itemHeight * (index - m_scrollOffset));
533 if (index < m_scrollOffset) {
538 if (index >= m_scrollOffset + visibleItems()) {
602 listRect.move(IntSize(0, m_scrollOffset * m_itemHeight));
618 IntRect itemRect(0, (index - m_scrollOffset) * m_itemHeight, damageRect.width(), m_itemHeight);
674 return m_scrollOffset;
689 if (m_scrollOffset == offset)
692 int scrolledLines = m_scrollOffset - offset
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.h 102 void setScrollOffset(int offset) { m_scrollOffset = offset; }
103 int scrollOffset() const { return m_scrollOffset; }
133 int m_scrollOffset;
WebPopupMenuProxyWin.cpp 171 , m_scrollOffset(0)
447 damageRect.setY(m_itemHeight * (index - m_scrollOffset));
463 return m_scrollOffset;
478 if (m_scrollOffset == offset)
481 int scrolledLines = m_scrollOffset - offset;
482 m_scrollOffset = offset;
839 translatedDamageRect.move(IntSize(0, m_scrollOffset * m_itemHeight));
844 selectedIndexDstPoint.move(0, -m_scrollOffset * m_itemHeight);
890 return m_scrollOffset + point.y() / m_itemHeight;
948 if (index < m_scrollOffset) {
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.h 83 int m_scrollOffset;
WebScrollbarImpl.cpp 65 , m_scrollOffset(0)
93 return m_scrollOffset;
263 return m_scrollOffset;
269 m_scrollOffset = offset.x();
271 m_scrollOffset = offset.y();
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.h 84 WebCore::IntSize m_scrollOffset;
DrawingAreaImpl.cpp 105 ASSERT(m_scrollOffset.isEmpty());
129 m_scrollOffset = IntSize();
152 m_scrollOffset += scrollOffset;
398 m_scrollOffset = IntSize();
589 updateInfo.scrollOffset = m_scrollOffset;
593 m_scrollOffset = IntSize();
  /external/webkit/Source/WebCore/platform/
ScrollView.h 355 IntSize m_scrollOffset; // FIXME: Would rather store this as a position, but we will wait to make this change until more code is shared.
428 void setScrollOffset(const IntSize& offset) { m_scrollOffset = offset; }
ScrollView.cpp 250 return IntRect(IntPoint(m_scrollOffset.width(), m_scrollOffset.height()),
386 IntSize newOffset = m_scrollOffset;
395 IntSize scrollDelta = newOffset - m_scrollOffset;
398 m_scrollOffset = newOffset;
888 updateScrollbars(m_scrollOffset);
    [all...]

Completed in 258 milliseconds