Home | History | Annotate | Download | only in jni

Lines Matching refs:m_mousePos

374     , m_mousePos(WebCore::IntPoint(0,0))
1688 m_mousePos = IntPoint(x - m_scrollOffsetX, y - m_scrollOffsetY);
1801 IntPoint docPos = frame->view()->windowToContents(m_mousePos);
1880 m_mousePos.setX(newx - m_scrollOffsetX);
1881 m_mousePos.setY(newy - m_scrollOffsetY);
1883 x, y, m_mousePos.x() + m_scrollOffsetX, m_mousePos.y() + m_scrollOffsetY,
1892 // adjust m_mousePos if it is not inside the returned highlight rectangle
1896 m_mousePos = testRect.center();
1897 m_mousePos.move(-m_scrollOffsetX, -m_scrollOffsetY);
1899 x, y, m_mousePos.x() + m_scrollOffsetX, m_mousePos.y() + m_scrollOffsetY,
2130 m_mousePos = WebCore::IntPoint(x - m_scrollOffsetX, y - m_scrollOffsetY);
2133 WebCore::PlatformMouseEvent mouseEvent(m_mousePos, m_mousePos,
3111 WebCore::IntPoint pt = m_mousePos;
3117 DBG_NAV_LOGD("m_mousePos=(%d,%d) m_scrollOffset=(%d,%d) pt=(%d,%d)"
3118 " node=%p", m_mousePos.x(), m_mousePos.y(),
3230 // m_mousePos should be set in getTouchHighlightRects()
3231 WebCore::HitTestResult hitTestResult = m_mainFrame->eventHandler()->hitTestResultAtPoint(m_mousePos, false);
3237 DBG_NAV_LOGD("touch up on (%d, %d), scrollOffset is (%d, %d), node:%p, frame:%p", m_mousePos.x() + m_scrollOffsetX, m_mousePos.y() + m_scrollOffsetY, m_scrollOffsetX, m_scrollOffsetY, node, frame);
3244 // This moves m_mousePos to the correct place, and handleMouseClick uses
3245 // m_mousePos to determine where the click happens.
3294 WebCore::PlatformMouseEvent mouseDown(m_mousePos, m_mousePos, WebCore::LeftButton,
3299 WebCore::PlatformMouseEvent mouseUp(m_mousePos, m_mousePos, WebCore::LeftButton,
3308 DBG_NAV_LOGD("m_mousePos={%d,%d} focusNode=%p handled=%s", m_mousePos.x(),
3309 m_mousePos.y(), focusNode, handled ? "true" : "false");