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

1 2 3 4

  /external/webkit/WebCore/platform/win/
WindowMessageListener.h 35 typedef unsigned WPARAM;
41 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM) = 0;
WindowMessageBroadcaster.h 48 static LRESULT CALLBACK SubclassedWndProc(HWND, UINT, WPARAM, LPARAM);
KeyEventWin.cpp 145 static bool isKeypadEvent(WPARAM code, LPARAM keyData, PlatformKeyboardEvent::Type type)
189 PlatformKeyboardEvent::PlatformKeyboardEvent(HWND, WPARAM code, LPARAM keyData, Type type, bool systemKey)
  /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 40 WPARAM wParam;
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);
HostWindow.cpp 78 LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
80 return DefWindowProcW(hWnd, 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 26 LRESULT CALLBACK StaticRecordWndProc(int nCode, WPARAM wParam,
29 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam);
32 LRESULT CALLBACK StaticPlaybackWndProc(int nCode, WPARAM wParam,
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/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 44 typedef unsigned WPARAM;
134 PlatformWheelEvent(HWND, WPARAM, LPARAM, bool isMouseHWheel);
PlatformKeyboardEvent.h 44 typedef unsigned WPARAM;
139 PlatformKeyboardEvent(HWND, WPARAM, LPARAM, Type, bool);
  /external/openssl/apps/
winrand.c 66 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
113 return msg.wParam;
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/openssl/crypto/rand/
rand.h 118 int RAND_event(UINT, WPARAM, LPARAM);
  /external/openssl/include/openssl/
rand.h 118 int RAND_event(UINT, WPARAM, LPARAM);
  /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);
256 return static_cast<int>(msg.wParam);
326 void PrintView(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
376 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
384 wmId = LOWORD(wParam);
385 wmEvent = HIWORD(wParam);
    [all...]

Completed in 1440 milliseconds

1 2 3 4