/external/webkit/Source/WebKit2/UIProcess/win/ |
D | WebInspectorProxyWin.cpp | 72 …BACK WebInspectorProxy::InspectorViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in InspectorViewWndProc() argument 77 return inspectorView->wndProc(hWnd, message, wParam, lParam); in InspectorViewWndProc() 80 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); in InspectorViewWndProc() 87 return ::DefWindowProc(hWnd, message, wParam, lParam); in InspectorViewWndProc() 90 LRESULT WebInspectorProxy::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 97 lResult = onSizeEvent(hWnd, message, wParam, lParam, handled); in wndProc() 100 lResult = onMinMaxInfoEvent(hWnd, message, wParam, lParam, handled); in wndProc() 103 lResult = onSetFocusEvent(hWnd, message, wParam, lParam, handled); in wndProc() 106 lResult = onCloseEvent(hWnd, message, wParam, lParam, handled); in wndProc() 114 lResult = ::DefWindowProc(hWnd, message, wParam, lParam); in wndProc() [all …]
|
D | WebPopupMenuProxyWin.cpp | 65 static void translatePoint(LPARAM& lParam, HWND from, HWND to) in translatePoint() argument 68 pt.x = static_cast<short>(GET_X_LPARAM(lParam)); in translatePoint() 69 pt.y = static_cast<short>(GET_Y_LPARAM(lParam)); in translatePoint() 71 lParam = MAKELPARAM(pt.x, pt.y); in translatePoint() 74 …bPopupMenuProxyWin::WebPopupMenuProxyWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WebPopupMenuProxyWndProc() argument 79 return popupMenuProxy->wndProc(hWnd, message, wParam, lParam); in WebPopupMenuProxyWndProc() 82 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); in WebPopupMenuProxyWndProc() 89 return ::DefWindowProc(hWnd, message, wParam, lParam); in WebPopupMenuProxyWndProc() 92 LRESULT WebPopupMenuProxyWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 99 lResult = onMouseActivate(hWnd, message, wParam, lParam, handled); in wndProc() [all …]
|
D | WebView.cpp | 106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WebViewWndProc() argument 111 return webView->wndProc(hWnd, message, wParam, lParam); in WebViewWndProc() 114 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); in WebViewWndProc() 121 return ::DefWindowProc(hWnd, message, wParam, lParam); in WebViewWndProc() 124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 141 lResult = onPaintEvent(hWnd, message, wParam, lParam, handled); in wndProc() 144 lResult = onPrintClientEvent(hWnd, message, wParam, lParam, handled); in wndProc() 161 lResult = onMouseEvent(hWnd, message, wParam, lParam, handled); in wndProc() 165 lResult = onWheelEvent(hWnd, message, wParam, lParam, handled); in wndProc() 168 lResult = onHorizontalScroll(hWnd, message, wParam, lParam, handled); in wndProc() [all …]
|
/external/webkit/Source/WebCore/platform/win/ |
D | PlatformMouseEventWin.cpp | 38 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam) in positionForEvent() argument 40 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; in positionForEvent() 44 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam) in globalPositionForEvent() argument 46 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; in globalPositionForEvent() 80 PlatformMouseEvent::PlatformMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool … in PlatformMouseEvent() argument 81 : m_position(positionForEvent(hWnd, lParam)) in PlatformMouseEvent() 82 , m_globalPosition(globalPositionForEvent(hWnd, lParam)) in PlatformMouseEvent()
|
D | WheelEventWin.cpp | 39 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam) in positionForEvent() argument 41 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; in positionForEvent() 46 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam) in globalPositionForEvent() argument 48 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; in globalPositionForEvent() 90 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isMouseHWheel) in PlatformWheelEvent() argument 91 : m_position(positionForEvent(hWnd, lParam)) in PlatformWheelEvent() 92 , m_globalPosition(globalPositionForEvent(hWnd, lParam)) in PlatformWheelEvent()
|
D | PopupMenuWin.cpp | 81 static void translatePoint(LPARAM& lParam, HWND from, HWND to) in translatePoint() argument 84 pt.x = (short)GET_X_LPARAM(lParam); in translatePoint() 85 pt.y = (short)GET_Y_LPARAM(lParam); in translatePoint() 87 lParam = MAKELPARAM(pt.x, pt.y); in translatePoint() 236 translatePoint(msg.lParam, msg.hwnd, m_popup); in show() 760 …SULT CALLBACK PopupMenuWin::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in PopupMenuWndProc() argument 769 return popup->wndProc(hWnd, message, wParam, lParam); in PopupMenuWndProc() 772 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); in PopupMenuWndProc() 783 return ::DefWindowProc(hWnd, message, wParam, lParam); in PopupMenuWndProc() 788 LRESULT PopupMenuWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument [all …]
|
/external/chromium/base/ |
D | event_recorder.cc | 26 LPARAM lParam) { in StaticRecordWndProc() argument 28 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam); in StaticRecordWndProc() 32 LPARAM lParam) { in StaticPlaybackWndProc() argument 34 return EventRecorder::current()->PlaybackWndProc(nCode, wParam, lParam); in StaticPlaybackWndProc() 164 LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) { in RecordWndProc() argument 171 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam); in RecordWndProc() 176 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam); in RecordWndProc() 192 msg_ptr = reinterpret_cast<EVENTMSG*>(lParam); in RecordWndProc() 198 return CallNextHookEx(journal_hook_, nCode, wParam, lParam); in RecordWndProc() 203 LPARAM lParam) { in PlaybackWndProc() argument [all …]
|
/external/webkit/Source/WebKit/wince/ |
D | WebView.cpp | 59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in webViewWndProc() argument 62 return webView->wndProc(hWnd, message, wParam, lParam); in webViewWndProc() 64 return DefWindowProc(hWnd, message, wParam, lParam); in webViewWndProc() 279 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in handleMouseEvent() argument 289 PlatformMouseEvent mouseEvent(hWnd, message, wParam, lParam); in handleMouseEvent() 302 PlatformMouseEvent moveEvent(hWnd, WM_MOUSEMOVE, 0, lParam, false); in handleMouseEvent() 341 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal) in handleMouseWheel() argument 343 PlatformWheelEvent wheelEvent(hWnd, wParam, lParam, isHorizontal); in handleMouseWheel() 391 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 412 handled = handleMouseEvent(hWnd, message, wParam, lParam); in wndProc() [all …]
|
/external/webkit/Source/WebKit2/Shared/win/ |
D | NativeWebKeyboardEventWin.cpp | 33 …tiveWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in NativeWebKeyboardEvent() argument 34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(hwnd, message, wParam, lParam)) in NativeWebKeyboardEvent() 40 m_nativeEvent.lParam = lParam; in NativeWebKeyboardEvent()
|
D | NativeWebMouseEventWin.cpp | 33 NativeWebMouseEvent::NativeWebMouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, boo… in NativeWebMouseEvent() argument 34 …: WebMouseEvent(WebEventFactory::createWebMouseEvent(hwnd, message, wParam, lParam, didActivateWeb… in NativeWebMouseEvent() 40 m_nativeEvent.lParam = lParam; in NativeWebMouseEvent()
|
D | WebEventFactory.cpp | 50 static inline POINT point(LPARAM lParam) in point() argument 52 POINT point = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) }; in point() 162 static bool isKeypadEvent(WPARAM wParam, LPARAM lParam, WebEvent::Type type) in isKeypadEvent() argument 187 return HIWORD(lParam) & KF_EXTENDED; in isKeypadEvent() 198 return !(HIWORD(lParam) & KF_EXTENDED); in isKeypadEvent() 327 …tory::createWebMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateW… in createWebMouseEvent() argument 352 lParam = relativeCursorPosition(hWnd); in createWebMouseEvent() 386 POINT position = point(lParam); in createWebMouseEvent() 398 …elEvent WebEventFactory::createWebWheelEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in createWebWheelEvent() argument 403 POINT globalPosition = point(lParam); in createWebWheelEvent()
|
/external/qemu/distrib/sdl-1.2.12/src/video/windib/ |
D | SDL_dibevents.c | 87 LRESULT DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in DIB_HandleMessage() argument 106 if ( lParam&REPEATED_KEYMASK ) { in DIB_HandleMessage() 111 if ( lParam&EXTENDED_KEYMASK ) in DIB_HandleMessage() 126 int sc = HIWORD(lParam) & 0xFF; in DIB_HandleMessage() 139 if ( lParam&EXTENDED_KEYMASK ) in DIB_HandleMessage() 153 m.lParam = lParam; in DIB_HandleMessage() 162 TranslateKey(wParam,HIWORD(lParam),&keysym,1)); in DIB_HandleMessage() 182 if ( lParam&EXTENDED_KEYMASK ) in DIB_HandleMessage() 197 int sc = HIWORD(lParam) & 0xFF; in DIB_HandleMessage() 210 if ( lParam&EXTENDED_KEYMASK ) in DIB_HandleMessage() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | MediaPlayerPrivateFullscreenWindow.cpp | 125 …PlayerPrivateFullscreenWindow::staticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in staticWndProc() argument 130 LPCREATESTRUCT lpcs = reinterpret_cast<LPCREATESTRUCT>(lParam); in staticWndProc() 136 return window->wndProc(hWnd, message, wParam, lParam); in staticWndProc() 138 return ::DefWindowProc(hWnd, message, wParam, lParam); in staticWndProc() 141 … MediaPlayerPrivateFullscreenWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 156 LPWINDOWPOS wp = reinterpret_cast<LPWINDOWPOS>(lParam); in wndProc() 177 lResult = m_client->fullscreenClientWndProc(hWnd, message, wParam, lParam); in wndProc()
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebInspectorClient.cpp | 432 LRESULT WebInspectorFrontendClient::onGetMinMaxInfo(WPARAM, LPARAM lParam) in onGetMinMaxInfo() argument 434 MINMAXINFO* info = reinterpret_cast<MINMAXINFO*>(lParam); in onGetMinMaxInfo() 465 void WebInspectorFrontendClient::onWebViewWindowPosChanging(WPARAM, LPARAM lParam) in onWebViewWindowPosChanging() argument 469 WINDOWPOS* windowPos = reinterpret_cast<WINDOWPOS*>(lParam); in onWebViewWindowPosChanging() 470 ASSERT_ARG(lParam, windowPos); in onWebViewWindowPosChanging() 484 static LRESULT CALLBACK WebInspectorWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in WebInspectorWndProc() argument 488 return ::DefWindowProc(hwnd, msg, wParam, lParam); in WebInspectorWndProc() 492 return client->onGetMinMaxInfo(wParam, lParam); in WebInspectorWndProc() 494 return client->onSize(wParam, lParam); in WebInspectorWndProc() 496 return client->onClose(wParam, lParam); in WebInspectorWndProc() [all …]
|
/external/webkit/Tools/MiniBrowser/win/ |
D | BrowserWindow.cpp | 46 …LLBACK BrowserWindow::BrowserWindowWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) in BrowserWindowWndProc() argument 51 return browserView->wndProc(window, message, wParam, lParam); in BrowserWindowWndProc() 54 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); in BrowserWindowWndProc() 64 return ::DefWindowProc(window, message, wParam, lParam); in BrowserWindowWndProc() 67 LRESULT BrowserWindow::wndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 82 onSize(LOWORD(lParam), HIWORD(lParam)); in wndProc() 98 lResult = ::DefWindowProc(window, message, wParam, lParam); in wndProc()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | win32window.cc | 90 bool Win32Window::OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, in OnMessage() argument 104 WPARAM wParam, LPARAM lParam) { in WndProc() argument 108 CREATESTRUCT* cs = reinterpret_cast<CREATESTRUCT*>(lParam); in WndProc() 115 bool handled = that->OnMessage(uMsg, wParam, lParam, result); in WndProc() 131 return ::DefWindowProc(hwnd, uMsg, wParam, lParam); in WndProc()
|
/external/webkit/Source/WebKit/win/ |
D | FullscreenVideoController.cpp | 379 …creenVideoController::fullscreenClientWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam) in fullscreenClientWndProc() argument 389 onMouseDown(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); in fullscreenClientWndProc() 392 onMouseMove(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); in fullscreenClientWndProc() 395 onMouseUp(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); in fullscreenClientWndProc() 399 return DefWindowProc(wnd, message, wParam, lParam); in fullscreenClientWndProc() 559 LRESULT FullscreenVideoController::hudWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam) in hudWndProc() argument 564 return DefWindowProc(wnd, message, wParam, lParam); in hudWndProc() 574 controller->onMouseDown(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); in hudWndProc() 577 controller->onMouseMove(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); in hudWndProc() 580 controller->onMouseUp(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam))); in hudWndProc() [all …]
|
D | WebNodeHighlight.cpp | 212 LRESULT CALLBACK OverlayWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in OverlayWndProc() argument 216 return ::DefWindowProc(hwnd, msg, wParam, lParam); in OverlayWndProc() 218 return ::DefWindowProc(hwnd, msg, wParam, lParam); in OverlayWndProc() 266 void WebNodeHighlight::windowReceivedMessage(HWND window, UINT msg, WPARAM wParam, LPARAM lParam) in windowReceivedMessage() argument 274 onWebViewWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam)); in windowReceivedMessage() 286 onRootWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam)); in windowReceivedMessage()
|
/external/webkit/Source/WebKit2/Platform/win/ |
D | RunLoopWin.cpp | 39 LRESULT CALLBACK RunLoop::RunLoopWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in RunLoopWndProc() argument 44 return runLoop->wndProc(hWnd, message, wParam, lParam); in RunLoopWndProc() 47 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); in RunLoopWndProc() 54 return ::DefWindowProc(hWnd, message, wParam, lParam); in RunLoopWndProc() 57 LRESULT RunLoop::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 68 return ::DefWindowProc(hWnd, message, wParam, lParam); in wndProc()
|
/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
D | LayerChangesFlusher.cpp | 72 LRESULT LayerChangesFlusher::hookCallback(int code, WPARAM wParam, LPARAM lParam) in hookCallback() argument 74 return shared().hookFired(code, wParam, lParam); in hookCallback() 77 LRESULT LayerChangesFlusher::hookFired(int code, WPARAM wParam, LPARAM lParam) in hookFired() argument 92 LRESULT result = ::CallNextHookEx(m_hook, code, wParam, lParam); in hookFired()
|
/external/webkit/Source/WebCore/plugins/win/ |
D | PluginMessageThrottlerWin.cpp | 71 void PluginMessageThrottlerWin::appendMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) in appendMessage() argument 78 message->lParam = lParam; in appendMessage() 111 …Proc(m_pluginView->pluginWndProc(), message->hWnd, message->msg, message->wParam, message->lParam); in processQueuedMessage()
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/ |
D | DHParameters.java | 22 int lParam) in getDefaultMParam() argument 24 if (lParam == 0) in getDefaultMParam() 29 return lParam < DEFAULT_MINIMUM_LENGTH ? lParam : DEFAULT_MINIMUM_LENGTH; in getDefaultMParam()
|
/external/webkit/Tools/WinLauncher/ |
D | WinLauncher.cpp | 326 void PrintView(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in PrintView() argument 376 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 393 PrintView(hWnd, message, wParam, lParam); in WndProc() 396 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc() 408 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc() 416 LRESULT CALLBACK MyEditProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) in MyEditProc() argument 431 return (LRESULT)CallWindowProc((WNDPROC)DefEditProc,hDlg,message,wParam,lParam); in MyEditProc() 434 return (LRESULT)CallWindowProc((WNDPROC)DefEditProc,hDlg,message,wParam,lParam); in MyEditProc() 441 INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) in About() argument 443 UNREFERENCED_PARAMETER(lParam); in About()
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/ |
D | WindowedPluginTest.cpp | 61 LRESULT WindowedPluginTest::staticWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in staticWndProc() argument 66 LRESULT result = instance->wndProc(message, wParam, lParam, handled); in staticWndProc() 70 return ::CallWindowProcW(instance->m_originalWndProc, hwnd, message, wParam, lParam); in staticWndProc()
|
/external/webkit/Tools/TestWebKitAPI/win/ |
D | PlatformWebViewWin.cpp | 120 LRESULT PlatformWebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 124 CREATESTRUCT* createStruct = reinterpret_cast<CREATESTRUCT*>(lParam); in wndProc() 131 … webView->m_parentWindowMessageObserver->windowReceivedMessage(hWnd, message, wParam, lParam); in wndProc() 136 return ::DefWindowProcW(hWnd, message, wParam, lParam); in wndProc()
|