Searched refs:lParam (Results 1 - 25 of 99) sorted by relevance

1234

/external/webkit/Source/WebKit2/Shared/win/
H A DNativeWebKeyboardEventWin.cpp33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(hwnd, message, wParam, lParam))
40 m_nativeEvent.lParam = lParam;
H A DNativeWebMouseEventWin.cpp33 NativeWebMouseEvent::NativeWebMouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView) argument
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(hwnd, message, wParam, lParam, didActivateWebView))
40 m_nativeEvent.lParam = lParam;
/external/webkit/Source/WebCore/platform/win/
H A DPlatformMouseEventWin.cpp38 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam) argument
40 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
44 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam) argument
46 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
80 PlatformMouseEvent::PlatformMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView) argument
81 : m_position(positionForEvent(hWnd, lParam))
82 , m_globalPosition(globalPositionForEvent(hWnd, lParam))
H A DWheelEventWin.cpp39 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam) argument
41 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
46 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam) argument
48 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
90 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isMouseHWheel) argument
91 : m_position(positionForEvent(hWnd, lParam))
92 , m_globalPosition(globalPositionForEvent(hWnd, lParam))
/external/qemu/distrib/sdl-1.2.12/src/video/windib/
H A DSDL_dibevents_c.h30 DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebInspectorProxyWin.cpp72 LRESULT CALLBACK WebInspectorProxy::InspectorViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
77 return inspectorView->wndProc(hWnd, message, wParam, lParam);
80 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
87 return ::DefWindowProc(hWnd, message, wParam, lParam);
90 LRESULT WebInspectorProxy::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
97 lResult = onSizeEvent(hWnd, message, wParam, lParam, handled);
100 lResult = onMinMaxInfoEvent(hWnd, message, wParam, lParam, handled);
103 lResult = onSetFocusEvent(hWnd, message, wParam, lParam, handled);
106 lResult = onCloseEvent(hWnd, message, wParam, lParam, handled);
114 lResult = ::DefWindowProc(hWnd, message, wParam, lParam);
129 onSetFocusEvent(HWND, UINT, WPARAM, LPARAM lParam, bool&) argument
136 onMinMaxInfoEvent(HWND, UINT, WPARAM, LPARAM lParam, bool&) argument
[all...]
H A DWebPopupMenuProxyWin.cpp65 static void translatePoint(LPARAM& lParam, HWND from, HWND to) argument
68 pt.x = static_cast<short>(GET_X_LPARAM(lParam));
69 pt.y = static_cast<short>(GET_Y_LPARAM(lParam));
71 lParam = MAKELPARAM(pt.x, pt.y);
74 LRESULT CALLBACK WebPopupMenuProxyWin::WebPopupMenuProxyWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
79 return popupMenuProxy->wndProc(hWnd, message, wParam, lParam);
82 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
89 return ::DefWindowProc(hWnd, message, wParam, lParam);
92 LRESULT WebPopupMenuProxyWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
99 lResult = onMouseActivate(hWnd, message, wParam, lParam, handle
521 onSize(HWND hWnd, UINT message, WPARAM, LPARAM lParam, bool& handled) argument
537 onKeyDown(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled) argument
628 onMouseMove(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled) argument
666 onLButtonDown(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled) argument
696 onLButtonUp(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool& handled) argument
[all...]
/external/chromium/base/
H A Devent_recorder.cc26 LPARAM lParam) {
28 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam);
32 LPARAM lParam) {
34 return EventRecorder::current()->PlaybackWndProc(nCode, wParam, lParam);
164 LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) { argument
171 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam);
176 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam);
192 msg_ptr = reinterpret_cast<EVENTMSG*>(lParam);
198 return CallNextHookEx(journal_hook_, nCode, wParam, lParam);
203 LPARAM lParam) {
25 StaticRecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) argument
31 StaticPlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam) argument
202 PlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam) argument
[all...]
H A Devent_recorder.h70 LRESULT RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam);
71 LRESULT PlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam);
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
H A DSDL_dx5events_c.h30 DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DLayerChangesFlusher.cpp72 LRESULT LayerChangesFlusher::hookCallback(int code, WPARAM wParam, LPARAM lParam) argument
74 return shared().hookFired(code, wParam, lParam);
77 LRESULT LayerChangesFlusher::hookFired(int code, WPARAM wParam, LPARAM lParam) argument
92 LRESULT result = ::CallNextHookEx(m_hook, code, wParam, lParam);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.h58 virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam,
66 LPARAM lParam);
H A Dwin32window.cc90 bool Win32Window::OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, argument
104 WPARAM wParam, LPARAM lParam) {
108 CREATESTRUCT* cs = reinterpret_cast<CREATESTRUCT*>(lParam);
115 bool handled = that->OnMessage(uMsg, wParam, lParam, result);
131 return ::DefWindowProc(hwnd, uMsg, wParam, lParam);
103 WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
/external/webkit/Source/JavaScriptCore/wtf/win/
H A DMainThreadWin.cpp45 LRESULT CALLBACK ThreadingWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
50 return DefWindowProc(hWnd, message, wParam, lParam);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
H A DWindowedPluginTest.cpp61 LRESULT WindowedPluginTest::staticWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) argument
66 LRESULT result = instance->wndProc(message, wParam, lParam, handled);
70 return ::CallWindowProcW(instance->m_originalWndProc, hwnd, message, wParam, lParam);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DMediaPlayerPrivateFullscreenWindow.cpp125 LRESULT MediaPlayerPrivateFullscreenWindow::staticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
130 LPCREATESTRUCT lpcs = reinterpret_cast<LPCREATESTRUCT>(lParam);
136 return window->wndProc(hWnd, message, wParam, lParam);
138 return ::DefWindowProc(hWnd, message, wParam, lParam);
141 LRESULT MediaPlayerPrivateFullscreenWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
156 LPWINDOWPOS wp = reinterpret_cast<LPWINDOWPOS>(lParam);
177 lResult = m_client->fullscreenClientWndProc(hWnd, message, wParam, lParam);
/external/webkit/Source/WebKit/wince/
H A DWebView.cpp59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
62 return webView->wndProc(hWnd, message, wParam, lParam);
64 return DefWindowProc(hWnd, message, wParam, lParam);
279 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
289 PlatformMouseEvent mouseEvent(hWnd, message, wParam, lParam);
302 PlatformMouseEvent moveEvent(hWnd, WM_MOUSEMOVE, 0, lParam, false);
341 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal)
343 PlatformWheelEvent wheelEvent(hWnd, wParam, lParam, isHorizontal);
391 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
412 handled = handleMouseEvent(hWnd, message, wParam, lParam);
[all...]
/external/webkit/Source/WebKit2/Platform/win/
H A DRunLoopWin.cpp39 LRESULT CALLBACK RunLoop::RunLoopWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
44 return runLoop->wndProc(hWnd, message, wParam, lParam);
47 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
54 return ::DefWindowProc(hWnd, message, wParam, lParam);
57 LRESULT RunLoop::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
68 return ::DefWindowProc(hWnd, message, wParam, lParam);
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
H A DDrawsGradient.cpp53 LRESULT DrawsGradient::wndProc(UINT message, WPARAM wParam, LPARAM lParam, bool& handled) argument
59 result = onPaint(wParam, lParam, handled);
62 result = onPrintClient(wParam, lParam, handled);
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
H A DDHParameters.java22 int lParam)
24 if (lParam == 0)
29 return lParam < DEFAULT_MINIMUM_LENGTH ? lParam : DEFAULT_MINIMUM_LENGTH;
21 getDefaultMParam( int lParam) argument
/external/webkit/Source/WebCore/plugins/win/
H A DPluginMessageThrottlerWin.cpp71 void PluginMessageThrottlerWin::appendMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) argument
78 message->lParam = lParam;
111 ::CallWindowProc(m_pluginView->pluginWndProc(), message->hWnd, message->msg, message->wParam, message->lParam);
/external/webkit/Tools/TestWebKitAPI/win/
H A DPlatformWebViewWin.cpp120 LRESULT PlatformWebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
124 CREATESTRUCT* createStruct = reinterpret_cast<CREATESTRUCT*>(lParam);
131 webView->m_parentWindowMessageObserver->windowReceivedMessage(hWnd, message, wParam, lParam);
136 return ::DefWindowProcW(hWnd, message, wParam, lParam);
/external/webkit/Source/WebCore/platform/wince/
H A DSharedTimerWinCE.cpp52 LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) argument
63 return DefWindowProc(hWnd, message, wParam, lParam);
/external/webkit/Tools/MiniBrowser/win/
H A DBrowserWindow.cpp46 LRESULT CALLBACK BrowserWindow::BrowserWindowWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) argument
51 return browserView->wndProc(window, message, wParam, lParam);
54 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
64 return ::DefWindowProc(window, message, wParam, lParam);
67 LRESULT BrowserWindow::wndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) argument
82 onSize(LOWORD(lParam), HIWORD(lParam));
98 lResult = ::DefWindowProc(window, message, wParam, lParam);
/external/webkit/Tools/WebKitAPITest/
H A DHostWindow.cpp79 LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) argument
81 return DefWindowProcW(hWnd, uMsg, wParam, lParam);

Completed in 474 milliseconds

1234