/external/webkit/WebCore/platform/win/ |
D | PlatformMouseEventWin.cpp | 37 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam) in positionForEvent() argument 39 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; in positionForEvent() 43 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam) in globalPositionForEvent() argument 45 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; in globalPositionForEvent() 79 PlatformMouseEvent::PlatformMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool … in PlatformMouseEvent() argument 80 : m_position(positionForEvent(hWnd, lParam)) in PlatformMouseEvent() 81 , 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 | WindowMessageBroadcaster.cpp | 112 … WindowMessageBroadcaster::SubclassedWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in SubclassedWndProc() argument 119 (*it)->windowReceivedMessage(hwnd, message, wParam, lParam); in SubclassedWndProc() 127 return CallWindowProc(originalWndProc, hwnd, message, wParam, lParam); in SubclassedWndProc()
|
D | SharedTimerWin.cpp | 85 LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in TimerWindowWndProc() argument 93 PostMessage(hWnd, message, wParam, lParam); in TimerWindowWndProc() 113 return DefWindowProc(hWnd, message, wParam, lParam); in TimerWindowWndProc()
|
D | PopupMenuWin.cpp | 630 static LRESULT CALLBACK PopupWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in PopupWndProc() argument 643 IntSize size(LOWORD(lParam), HIWORD(lParam)); in PopupWndProc() 700 … ::SendMessage(popup->client()->hostWindow()->platformWindow(), message, wParam, lParam); in PopupWndProc() 709 … ::PostMessage(popup->client()->hostWindow()->platformWindow(), message, wParam, lParam); in PopupWndProc() 741 IntPoint mousePoint(MAKEPOINTS(lParam)); in PopupWndProc() 774 IntPoint mousePoint(MAKEPOINTS(lParam)); in PopupWndProc() 792 IntPoint mousePoint(MAKEPOINTS(lParam)); in PopupWndProc() 848 lResult = DefWindowProc(hWnd, message, wParam, lParam); in PopupWndProc()
|
/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/WebCore/platform/network/win/ |
D | ResourceHandleWin.cpp | 89 WPARAM wParam, LPARAM lParam) in ResourceHandleWndProc() argument 99 (job->*(messageHandlers[index]))(lParam); in ResourceHandleWndProc() 104 return DefWindowProc(hWnd, message, wParam, lParam); in ResourceHandleWndProc() 136 void ResourceHandle::onHandleCreated(LPARAM lParam) in onHandleCreated() argument 139 d->m_resourceHandle = HINTERNET(lParam); in onHandleCreated() 170 d->m_secondaryHandle = HINTERNET(lParam); in onHandleCreated() 196 void ResourceHandle::onRequestRedirected(LPARAM lParam) in onRequestRedirected() argument 202 ResourceRequest request((StringImpl*) lParam); in onRequestRedirected() 207 void ResourceHandle::onRequestComplete(LPARAM lParam) in onRequestComplete() argument 288 LPARAM lParam; in transferJobStatusCallback() local [all …]
|
/external/webkit/WebKit/win/WebCoreSupport/ |
D | WebInspectorClient.cpp | 398 LRESULT WebInspectorClient::onGetMinMaxInfo(WPARAM, LPARAM lParam) in onGetMinMaxInfo() argument 400 MINMAXINFO* info = reinterpret_cast<MINMAXINFO*>(lParam); in onGetMinMaxInfo() 433 void WebInspectorClient::onWebViewWindowPosChanging(WPARAM, LPARAM lParam) in onWebViewWindowPosChanging() argument 437 WINDOWPOS* windowPos = reinterpret_cast<WINDOWPOS*>(lParam); in onWebViewWindowPosChanging() 438 ASSERT_ARG(lParam, windowPos); in onWebViewWindowPosChanging() 452 static LRESULT CALLBACK WebInspectorWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in WebInspectorWndProc() argument 456 return ::DefWindowProc(hwnd, msg, wParam, lParam); in WebInspectorWndProc() 460 return client->onGetMinMaxInfo(wParam, lParam); in WebInspectorWndProc() 462 return client->onSize(wParam, lParam); in WebInspectorWndProc() 464 return client->onClose(wParam, lParam); in WebInspectorWndProc() [all …]
|
/external/webkit/WebCore/platform/wx/ |
D | KeyEventWin.cpp | 139 PlatformKeyboardEvent::PlatformKeyboardEvent(HWND hWnd, WPARAM wParam, LPARAM lParam) in PlatformKeyboardEvent() argument 143 , m_isKeyUp((lParam & NEW_RELEASE_STATE_MASK)) in PlatformKeyboardEvent() 144 , m_autoRepeat(lParam & REPEAT_COUNT_MASK) in PlatformKeyboardEvent() 149 , m_altKey(lParam & ALT_KEY_DOWN_MASK) in PlatformKeyboardEvent() 150 , m_metaKey(lParam & ALT_KEY_DOWN_MASK) // FIXME: Is this right? in PlatformKeyboardEvent()
|
/external/webkit/WebKit/win/ |
D | WebNodeHighlight.cpp | 214 LRESULT CALLBACK OverlayWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in OverlayWndProc() argument 218 return ::DefWindowProc(hwnd, msg, wParam, lParam); in OverlayWndProc() 220 return ::DefWindowProc(hwnd, msg, wParam, lParam); in OverlayWndProc() 268 void WebNodeHighlight::windowReceivedMessage(HWND window, UINT msg, WPARAM wParam, LPARAM lParam) in windowReceivedMessage() argument 276 onWebViewWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam)); in windowReceivedMessage() 288 onRootWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam)); in windowReceivedMessage()
|
D | WebView.cpp | 269 static LRESULT CALLBACK WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam); 1061 bool WebView::handleContextMenuEvent(WPARAM wParam, LPARAM lParam) in handleContextMenuEvent() argument 1066 POINT coords = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) }; in handleContextMenuEvent() 1122 lParam = MAKELPARAM(coords.x, coords.y); in handleContextMenuEvent() 1136 PlatformMouseEvent mouseEvent(m_viewWindow, WM_RBUTTONUP, wParam, lParam); in handleContextMenuEvent() 1180 bool WebView::onMeasureItem(WPARAM /*wParam*/, LPARAM lParam) in onMeasureItem() argument 1190 m_uiDelegate->measureCustomMenuItem((IWebView*)this, (void*)lParam); in onMeasureItem() 1194 bool WebView::onDrawItem(WPARAM /*wParam*/, LPARAM lParam) in onDrawItem() argument 1204 m_uiDelegate->drawCustomMenuItem((IWebView*)this, (void*)lParam); in onDrawItem() 1244 void WebView::performContextMenuAction(WPARAM wParam, LPARAM lParam, bool byPosition) in performContextMenuAction() argument [all …]
|
/external/webkit/WebCore/plugins/win/ |
D | PluginMessageThrottlerWin.cpp | 61 void PluginMessageThrottlerWin::appendMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) in appendMessage() argument 68 message->lParam = lParam; in appendMessage() 91 …Proc(m_pluginView->pluginWndProc(), message->hWnd, message->msg, message->wParam, message->lParam); in messageThrottleTimerFired()
|
D | PluginViewWin.cpp | 262 …ESULT CALLBACK PluginView::PluginViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in PluginViewWndProc() argument 266 return pluginView->wndProc(hWnd, message, wParam, lParam); in PluginViewWndProc() 283 PluginView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in wndProc() argument 312 m_messageThrottler->appendMessage(hWnd, message, wParam, lParam); in wndProc() 342 LRESULT result = ::CallWindowProc(m_pluginWndProc, hWnd, message, wParam, lParam); in wndProc() 544 npEvent.lParam = reinterpret_cast<uint32>(&windowpos); in paint() 556 npEvent.lParam = 0; in paint() 571 npEvent.lParam = 0; in handleKeyboardEvent() 574 npEvent.lParam = 0x8000; in handleKeyboardEvent() 593 npEvent.lParam = MAKELPARAM(p.x(), p.y()); in handleMouseEvent()
|
/external/webkit/WebKitTools/WinLauncher/ |
D | WinLauncher.cpp | 284 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 303 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc() 315 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc() 323 LRESULT CALLBACK MyEditProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) in MyEditProc() argument 338 return (LRESULT)CallWindowProc((WNDPROC)DefEditProc,hDlg,message,wParam,lParam); in MyEditProc() 341 return (LRESULT)CallWindowProc((WNDPROC)DefEditProc,hDlg,message,wParam,lParam); in MyEditProc() 349 INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) in About() argument 351 UNREFERENCED_PARAMETER(lParam); in About()
|
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/ |
D | SDL_sysevents.c | 86 LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)=NULL; 334 LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in WinMessage() argument 346 fprintf(stderr, " -- 0x%X, 0x%X\n", wParam, lParam); in WinMessage() 435 x = LOWORD(lParam); in WinMessage() 436 y = HIWORD(lParam); in WinMessage() 552 x = (Sint16)LOWORD(lParam); in WinMessage() 553 y = (Sint16)HIWORD(lParam); in WinMessage() 653 info = (MINMAXINFO *)lParam; in WinMessage() 695 hittest = LOWORD(lParam); in WinMessage() 758 hwnd, msg, wParam, lParam)); in WinMessage() [all …]
|
D | SDL_lowvideo.h | 100 extern LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); 132 LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
/external/openssl/apps/ |
D | winrand.c | 116 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam) in WndProc() argument 138 if (RAND_event(iMsg, wParam, lParam) == 1 && seeded == 0) in WndProc() 147 return DefWindowProc(hwnd, iMsg, wParam, lParam); in WndProc()
|
/external/webkit/JavaScriptCore/wtf/win/ |
D | MainThreadWin.cpp | 45 LRESULT CALLBACK ThreadingWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in ThreadingWindowWndProc() argument 50 return DefWindowProc(hWnd, message, wParam, lParam); in ThreadingWindowWndProc()
|
/external/webkit/WebCore/platform/graphics/wince/ |
D | FontPlatformData.cpp | 82 …mFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam); 94 …mFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam); 177 …umFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam) in enumFontFamProc() argument 179 ((FontFamilyChecker*)lParam)->m_exists = true; in enumFontFamProc() 183 …umFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam) in enumFontFamProc() argument 186 ((ValidFontFamilyFinder*)lParam)->m_family = String(lpelf->lfFaceName); in enumFontFamProc()
|
/external/webkit/WebCore/platform/graphics/win/ |
D | QTMovieWinTimer.cpp | 48 static LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in TimerWindowWndProc() argument 58 return DefWindowProc(hWnd, message, wParam, lParam); in TimerWindowWndProc()
|
/external/openssl/crypto/rand/ |
D | rand_win.c | 585 int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam) in RAND_event() argument 604 x=LOWORD(lParam); in RAND_event() 605 y=HIWORD(lParam); in RAND_event() 619 RAND_add(&lParam, sizeof(lParam), 0); in RAND_event()
|
/external/icu4c/samples/layout/ |
D | layout.cpp | 117 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 161 context->width = LOWORD(lParam); in WndProc() 162 context->height = HIWORD(lParam); in WndProc() 354 return DefWindowProc(hwnd, message, wParam, lParam); in WndProc()
|
D | clayout.c | 118 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 163 context->width = LOWORD(lParam); in WndProc() 164 context->height = HIWORD(lParam); in WndProc() 359 return DefWindowProc(hwnd, message, wParam, lParam); in WndProc()
|
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
D | SDL_dx5events.c | 479 LRESULT DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) in DX5_HandleMessage() argument 509 SizeX = LOWORD(lParam); in DX5_HandleMessage() 510 SizeY = HIWORD(lParam); in DX5_HandleMessage() 555 wmmsg.lParam = lParam; in DX5_HandleMessage() 563 return CallWindowProc(userWindowProc, hwnd, msg, wParam, lParam); in DX5_HandleMessage() 568 return(DefWindowProc(hwnd, msg, wParam, lParam)); in DX5_HandleMessage()
|
/external/libpng/contrib/visupng/ |
D | VisualPng.c | 146 LPARAM lParam) in WndProc() argument 178 hInstance = ((LPCREATESTRUCT) lParam)->hInstance ; in WndProc() 214 cxWinSize = LOWORD (lParam); in WndProc() 215 cyWinSize = HIWORD (lParam); in WndProc() 426 return DefWindowProc (hwnd, message, wParam, lParam); in WndProc() 430 WPARAM wParam, LPARAM lParam) in AboutDlgProc() argument
|