HomeSort by relevance Sort by last modified time
    Searched refs:LPARAM (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/webkit/WebCore/platform/win/
WindowMessageListener.h 33 typedef long LPARAM;
41 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM) = 0;
PlatformMouseEventWin.cpp 38 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam)
40 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
44 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam)
46 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
80 PlatformMouseEvent::PlatformMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool activatedWebView
    [all...]
WheelEventWin.cpp 39 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam)
41 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
46 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam)
48 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
90 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isMouseHWheel
    [all...]
WindowMessageBroadcaster.h 48 static LRESULT CALLBACK SubclassedWndProc(HWND, UINT, WPARAM, LPARAM);
  /external/webkit/WebKit/chromium/public/win/
WebInputEventFactory.h 46 WEBKIT_API static WebKeyboardEvent keyboardEvent(HWND, UINT, WPARAM, LPARAM);
47 WEBKIT_API static WebMouseEvent mouseEvent(HWND, UINT, WPARAM, LPARAM);
48 WEBKIT_API static WebMouseWheelEvent mouseWheelEvent(HWND, UINT, WPARAM, LPARAM);
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibevents_c.h 30 DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/webkit/WebKit/win/WebCoreSupport/
WebInspectorClient.h 82 LRESULT onGetMinMaxInfo(WPARAM, LPARAM);
83 LRESULT onSize(WPARAM, LPARAM);
84 LRESULT onClose(WPARAM, LPARAM);
87 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM);
89 void onWebViewWindowPosChanging(WPARAM, LPARAM);
104 static friend LRESULT CALLBACK WebInspectorWndProc(HWND, UINT, WPARAM, LPARAM);
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5events_c.h 30 DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/webkit/WebCore/plugins/win/
PluginMessageThrottlerWin.h 41 LPARAM lParam;
51 void appendMessage(HWND, UINT msg, WPARAM, LPARAM);
  /external/webkit/WebKit/win/
WebNodeHighlight.h 59 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM);
71 friend static LRESULT CALLBACK OverlayWndProc(HWND, UINT, WPARAM, LPARAM);
WebView.h 787 bool handleMouseEvent(UINT, WPARAM, LPARAM);
789 bool handleContextMenuEvent(WPARAM, LPARAM);
790 bool onMeasureItem(WPARAM, LPARAM);
791 bool onDrawItem(WPARAM, LPARAM);
792 bool onInitMenuPopup(WPARAM, LPARAM);
793 bool onUninitMenuPopup(WPARAM, LPARAM);
794 void performContextMenuAction(WPARAM, LPARAM, bool byPosition);
795 bool mouseWheel(WPARAM, LPARAM, bool isMouseHWheel);
796 bool verticalScroll(WPARAM, LPARAM);
797 bool horizontalScroll(WPARAM, LPARAM);
    [all...]
  /external/webkit/WebKitTools/WebKitAPITest/
HostWindow.h 44 static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
TestsController.h 55 static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
  /external/chromium/base/
event_recorder.h 65 LRESULT RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam);
66 LRESULT PlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam);
event_recorder.cc 27 LPARAM lParam) {
29 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam);
33 LPARAM lParam) {
35 return EventRecorder::current()->PlaybackWndProc(nCode, wParam, lParam);
165 LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) {
172 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam);
177 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam);
    [all...]
  /external/skia/include/views/
SkOSWindow_Win.h 32 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  /external/webkit/WebCore/platform/graphics/win/
QTMovieWin.h 51 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM) = 0;
120 static LRESULT fullscreenWndProc(HWND, UINT message, WPARAM, LPARAM);
  /external/webkit/WebCore/platform/network/
ResourceHandle.h 49 typedef long LPARAM;
166 void onHandleCreated(LPARAM);
167 void onRequestRedirected(LPARAM);
168 void onRequestComplete(LPARAM);
170 friend LRESULT __stdcall ResourceHandleWndProc(HWND, unsigned message, WPARAM, LPARAM);
  /external/webkit/JavaScriptCore/wtf/win/
MainThreadWin.cpp 45 LRESULT CALLBACK ThreadingWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
50 return DefWindowProc(hWnd, message, wParam, lParam);
  /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);
  /external/webkit/WebCore/platform/
PlatformWheelEvent.h 45 typedef long LPARAM;
134 PlatformWheelEvent(HWND, WPARAM, LPARAM, bool isMouseHWheel);
PlatformKeyboardEvent.h 45 typedef long LPARAM;
139 PlatformKeyboardEvent(HWND, WPARAM, LPARAM, Type, bool);
  /external/webkit/WebKitTools/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)
395 PrintView(hWnd, message, wParam, lParam);
398 return DefWindowProc(hWnd, message, wParam, lParam);
    [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/WebCore/platform/network/win/
ResourceHandleWin.cpp 58 typedef void (ResourceHandle:: *ResourceHandleEventHandler)(LPARAM);
89 WPARAM wParam, LPARAM lParam)
99 (job->*(messageHandlers[index]))(lParam);
104 return DefWindowProc(hWnd, message, wParam, lParam);
136 void ResourceHandle::onHandleCreated(LPARAM lParam)
139 d->m_resourceHandle = HINTERNET(lParam);
170 d->m_secondaryHandle = HINTERNET(lParam);
196 void ResourceHandle::onRequestRedirected(LPARAM lParam
    [all...]

Completed in 157 milliseconds

1 2 3 4