Searched defs:windowPos (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/android/
H A DPlatformTouchPointAndroid.cpp33 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state) argument
36 , m_screenPos(windowPos)
37 , m_pos(windowPos) { }
/external/webkit/Source/WebCore/platform/brew/
H A DPlatformTouchPointBrew.cpp33 PlatformTouchPoint::PlatformTouchPoint(int id, const IntPoint& windowPos, State state) argument
36 , m_screenPos(windowPos)
37 , m_pos(windowPos) { }
H A DPlatformTouchEventBrew.cpp63 IntPoint windowPos = IntPoint(x, y); local
66 m_touchPoints.append(PlatformTouchPoint(id, windowPos, state));
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformTouchPointEfl.cpp35 PlatformTouchPoint::PlatformTouchPoint(unsigned id, const IntPoint& windowPos, State state) argument
38 , m_screenPos(windowPos)
39 , m_pos(windowPos) { }
/external/webkit/Source/WebKit/win/
H A DWebNodeHighlight.cpp235 void WebNodeHighlight::onWebViewWindowPosChanged(WINDOWPOS* windowPos) argument
237 bool sizing = !(windowPos->flags & SWP_NOSIZE);
248 void WebNodeHighlight::onRootWindowPosChanged(WINDOWPOS* windowPos) argument
250 bool moving = !(windowPos->flags & SWP_NOMOVE);
251 bool sizing = !(windowPos->flags & SWP_NOSIZE);
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebInspectorClient.cpp469 WINDOWPOS* windowPos = reinterpret_cast<WINDOWPOS*>(lParam); local
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);

Completed in 593 milliseconds