HomeSort by relevance Sort by last modified time
    Searched refs:lParam (Results 26 - 50 of 110) sorted by null

12 3 4 5

  /external/webkit/Tools/WebKitAPITest/
HostWindow.cpp 79 LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
81 return DefWindowProcW(hWnd, uMsg, wParam, lParam);
TestsController.cpp 137 LRESULT TestsController::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
145 return DefWindowProcW(hWnd, uMsg, wParam, lParam);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeWindowsSubWindow.cpp 19 LRESULT CALLBACK myWndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
21 return DefWindowProc(hwnd, uMsg, wParam, lParam);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 432 LRESULT WebInspectorFrontendClient::onGetMinMaxInfo(WPARAM, LPARAM lParam)
434 MINMAXINFO* info = reinterpret_cast<MINMAXINFO*>(lParam);
441 LRESULT WebInspectorFrontendClient::onSize(WPARAM, LPARAM)
451 LRESULT WebInspectorFrontendClient::onClose(WPARAM, LPARAM)
465 void WebInspectorFrontendClient::onWebViewWindowPosChanging(WPARAM, LPARAM lParam)
469 WINDOWPOS* windowPos = reinterpret_cast<WINDOWPOS*>(lParam);
470 ASSERT_ARG(lParam, windowPos);
484 static LRESULT CALLBACK WebInspectorWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp 106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
111 return webView->wndProc(hWnd, message, wParam, lParam);
114 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
121 return ::DefWindowProc(hWnd, message, wParam, lParam);
124 LRESULT WebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
141 lResult = onPaintEvent(hWnd, message, wParam, lParam, handled);
144 lResult = onPrintClientEvent(hWnd, message, wParam, lParam, handled);
161 lResult = onMouseEvent(hWnd, message, wParam, lParam, handled)
    [all...]
  /external/openssl/apps/
winrand.c 66 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
116 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
138 if (RAND_event(iMsg, wParam, lParam) == 1 && seeded == 0)
147 return DefWindowProc(hwnd, iMsg, wParam, lParam);
  /external/webkit/Source/WebCore/platform/win/
WindowMessageBroadcaster.cpp 112 LRESULT CALLBACK WindowMessageBroadcaster::SubclassedWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
119 (*it)->windowReceivedMessage(hwnd, message, wParam, lParam);
127 return CallWindowProc(originalWndProc, hwnd, message, wParam, lParam);
PopupMenuWin.cpp 81 static void translatePoint(LPARAM& lParam, HWND from, HWND to)
84 pt.x = (short)GET_X_LPARAM(lParam);
85 pt.y = (short)GET_Y_LPARAM(lParam);
87 lParam = MAKELPARAM(pt.x, pt.y);
236 translatePoint(msg.lParam, msg.hwnd, m_popup);
760 LRESULT CALLBACK PopupMenuWin::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
769 return popup->wndProc(hWnd, message, wParam, lParam);
772 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
    [all...]
SharedTimerWin.cpp 87 LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
95 PostMessage(hWnd, message, wParam, lParam);
115 return DefWindowProc(hWnd, message, wParam, lParam);
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibevents.c 87 LRESULT DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
106 if ( lParam&REPEATED_KEYMASK ) {
111 if ( lParam&EXTENDED_KEYMASK )
126 int sc = HIWORD(lParam) & 0xFF;
139 if ( lParam&EXTENDED_KEYMASK )
153 m.lParam = lParam;
162 TranslateKey(wParam,HIWORD(lParam),&keysym,1));
182 if ( lParam&EXTENDED_KEYMASK
    [all...]
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 379 LRESULT FullscreenVideoController::fullscreenClientWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
389 onMouseDown(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
392 onMouseMove(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
395 onMouseUp(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
399 return DefWindowProc(wnd, message, wParam, lParam);
559 LRESULT FullscreenVideoController::hudWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam
    [all...]
WebNodeHighlight.cpp 212 LRESULT CALLBACK OverlayWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
216 return ::DefWindowProc(hwnd, msg, wParam, lParam);
218 return ::DefWindowProc(hwnd, msg, wParam, lParam);
266 void WebNodeHighlight::windowReceivedMessage(HWND window, UINT msg, WPARAM wParam, LPARAM lParam)
274 onWebViewWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam));
286 onRootWindowPosChanged(reinterpret_cast<WINDOWPOS*>(lParam));
  /external/chromium/chrome/browser/ui/views/
unhandled_keyboard_event_handler.cc 64 event.os_event.wParam, event.os_event.lParam);
  /external/skia/include/views/
SkOSWindow_Win.h 36 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  /external/webkit/Tools/TestWebKitAPI/win/
PlatformWebViewWin.cpp 120 LRESULT PlatformWebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
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/WebKit2/Shared/win/
WebEventFactory.cpp 42 static inline LPARAM relativeCursorPosition(HWND hwnd)
50 static inline POINT point(LPARAM lParam)
52 POINT point = { GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam) };
162 static bool isKeypadEvent(WPARAM wParam, LPARAM lParam, WebEvent::Type type)
187 return HIWORD(lParam) & KF_EXTENDED;
198 return !(HIWORD(lParam) & KF_EXTENDED);
327 WebMouseEvent WebEventFactory::createWebMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
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);
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)
346 fprintf(stderr, " -- 0x%X, 0x%X\n", wParam, lParam);
435 x = LOWORD(lParam);
436 y = HIWORD(lParam);
552 x = (Sint16)LOWORD(lParam);
553 y = (Sint16)HIWORD(lParam);
653 info = (MINMAXINFO *)lParam;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovieWinTimer.cpp 48 static LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
58 return DefWindowProc(hWnd, message, wParam, lParam);
  /external/webkit/Tools/WinCELauncher/
main.cpp 34 static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
42 return DefWindowProc(hWnd, message, wParam, lParam);
  /external/webkit/Tools/WinLauncher/
WinLauncher.cpp 57 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
58 INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
59 LRESULT CALLBACK MyEditProc(HWND, UINT, WPARAM, LPARAM);
90 SendMessage(hURLBarWnd, (UINT)WM_SETTEXT, 0, (LPARAM)frameURL);
326 void PrintView(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
376 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
393 PrintView(hWnd, message, wParam, lParam);
396 return DefWindowProc(hWnd, message, wParam, lParam);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
win32socketserver.cc 169 virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam,
174 bool OnSocketNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT& result);
175 bool OnDnsNotify(WPARAM wParam, LPARAM lParam, LRESULT& result);
190 LPARAM lParam, LRESULT& result) {
194 return OnSocketNotify(uMsg, wParam, lParam, result);
196 return OnDnsNotify(wParam, lParam, result)
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
WindowlessPaintRectCoordinates.cpp 68 RECT* paintRect = reinterpret_cast<RECT*>(event->lParam);
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 79 EnumFontFamilies(g_screenDC, family, enumFontFamProc, (LPARAM)this);
84 static int CALLBACK enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam);
91 EnumFontFamilies(g_screenDC, 0, enumFontFamProc, (LPARAM)this);
96 static int CALLBACK enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam);
179 int CALLBACK FontFamilyChecker::enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam)
181 ((FontFamilyChecker*)lParam)->m_exists = true;
185 int CALLBACK ValidFontFamilyFinder::enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 69 HRESULT handleMouseEvent([in] OLE_HANDLE hwnd, [in] UINT msg, [in] WPARAM wParam, [in] LPARAM lParam);

Completed in 684 milliseconds

12 3 4 5