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

  /external/webkit/Source/WebCore/platform/android/
PlatformTouchPointAndroid.cpp 33 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state)
36 , m_screenPos(windowPos)
37 , m_pos(windowPos) { }
  /external/webkit/Source/WebCore/platform/brew/
PlatformTouchPointBrew.cpp 33 PlatformTouchPoint::PlatformTouchPoint(int id, const IntPoint& windowPos, State state)
36 , m_screenPos(windowPos)
37 , m_pos(windowPos) { }
PlatformTouchEventBrew.cpp 63 IntPoint windowPos = IntPoint(x, y);
66 m_touchPoints.append(PlatformTouchPoint(id, windowPos, state));
  /external/webkit/Source/WebCore/platform/efl/
PlatformTouchPointEfl.cpp 35 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state)
38 , m_screenPos(windowPos)
39 , m_pos(windowPos) { }
  /external/webkit/Source/WebCore/platform/
PlatformTouchPoint.h 51 PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State);
53 PlatformTouchPoint(int id, const IntPoint& windowPos, State);
55 PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State);
  /external/webkit/Source/WebKit/win/
WebNodeHighlight.cpp 235 void WebNodeHighlight::onWebViewWindowPosChanged(WINDOWPOS* windowPos)
237 bool sizing = !(windowPos->flags & SWP_NOSIZE);
248 void WebNodeHighlight::onRootWindowPosChanged(WINDOWPOS* windowPos)
250 bool moving = !(windowPos->flags & SWP_NOMOVE);
251 bool sizing = !(windowPos->flags & SWP_NOSIZE);
274 onWebViewWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam));
286 onRootWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam));
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 469 WINDOWPOS* windowPos = reinterpret_cast<WINDOWPOS*>(lParam);
470 ASSERT_ARG(lParam, windowPos);
472 if (windowPos->flags & SWP_NOSIZE)
479 windowPos->cy -= inspectorHeight;
481 SetWindowPos(m_frontendWebViewHwnd, 0, windowPos->x, windowPos->y + windowPos->cy, windowPos->cx, inspectorHeight, SWP_NOZORDER)
    [all...]

Completed in 559 milliseconds