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

1 2 3 4 5 6

  /external/webkit/Source/WebCore/platform/win/
WindowMessageListener.h 35 typedef unsigned WPARAM;
41 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM) = 0;
  /external/webkit/Source/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/webkit/Source/WebKit2/Shared/win/
WebEventFactory.h 38 static WebMouseEvent createWebMouseEvent(HWND, UINT message, WPARAM, LPARAM, bool didActivateWebView);
39 static WebWheelEvent createWebWheelEvent(HWND, UINT message, WPARAM, LPARAM);
40 static WebKeyboardEvent createWebKeyboardEvent(HWND, UINT message, WPARAM, LPARAM);
NativeWebKeyboardEventWin.cpp 33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(hwnd, message, wParam, lParam))
39 m_nativeEvent.wParam = wParam;
NativeWebMouseEventWin.cpp 33 NativeWebMouseEvent::NativeWebMouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView)
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(hwnd, message, wParam, lParam, didActivateWebView))
39 m_nativeEvent.wParam = wParam;
  /external/webkit/Tools/TestWebKitAPI/win/
WindowMessageObserver.h 33 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM) = 0;
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateFullscreenWindow.h 35 typedef unsigned WPARAM;
51 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM) = 0;
71 static LRESULT __stdcall staticWndProc(HWND, UINT message, WPARAM, LPARAM);
72 LRESULT wndProc(HWND, UINT message, WPARAM, LPARAM);
QTMovieGWorld.h 52 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM) = 0;
78 static LRESULT fullscreenWndProc(HWND, UINT message, WPARAM, LPARAM);
  /external/chromium/chrome/browser/ui/views/status_icons/
status_tray_win.h 21 WPARAM wparam,
31 WPARAM wparam,
  /external/qemu/distrib/sdl-1.2.15/src/video/windib/
SDL_dibevents_c.h 30 DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
WindowedPluginTest.h 38 virtual LRESULT wndProc(UINT message, WPARAM, LPARAM, bool& handled) = 0;
44 static LRESULT CALLBACK staticWndProc(HWND, UINT message, WPARAM, LPARAM);
  /external/webkit/Source/WebKit/wince/
WebView.h 79 static LRESULT CALLBACK webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
80 LRESULT wndProc(HWND, UINT, WPARAM, LPARAM);
83 bool handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
84 bool handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal);
85 bool handleKeyDown(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown);
86 bool handleKeyPress(WPARAM charCode, LPARAM keyData, bool systemKeyDown);
87 bool handleKeyUp(WPARAM virtualKeyCode, LPARAM keyData, bool systemKeyDown)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.h 78 static LRESULT CALLBACK WebPopupMenuProxyWndProc(HWND, UINT, WPARAM, LPARAM);
79 LRESULT wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
82 LRESULT onMouseActivate(HWND, UINT message, WPARAM, LPARAM, bool& handled);
83 LRESULT onSize(HWND, UINT message, WPARAM, LPARAM, bool& handled);
84 LRESULT onKeyDown(HWND, UINT message, WPARAM, LPARAM, bool& handled);
85 LRESULT onChar(HWND, UINT message, WPARAM, LPARAM, bool& handled);
86 LRESULT onMouseMove(HWND, UINT message, WPARAM, LPARAM, bool& handled);
87 LRESULT onLButtonDown(HWND, UINT message, WPARAM, LPARAM, bool& handled);
88 LRESULT onLButtonUp(HWND, UINT message, WPARAM, LPARAM, bool& handled)
    [all...]
WebView.h 94 static LRESULT CALLBACK WebViewWndProc(HWND, UINT, WPARAM, LPARAM);
95 LRESULT wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
97 LRESULT onMouseEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
98 LRESULT onWheelEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
99 LRESULT onHorizontalScroll(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
100 LRESULT onVerticalScroll(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
101 LRESULT onGestureNotify(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
102 LRESULT onGesture(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
103 LRESULT onKeyEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled)
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
DrawsGradient.cpp 40 LRESULT onPaint(WPARAM, LPARAM, bool& handled);
41 LRESULT onPrintClient(WPARAM, LPARAM, bool& handled);
43 virtual LRESULT wndProc(UINT message, WPARAM, LPARAM, bool& handled);
53 LRESULT DrawsGradient::wndProc(UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
59 result = onPaint(wParam, lParam, handled);
62 result = onPrintClient(wParam, lParam, handled);
71 LRESULT DrawsGradient::onPaint(WPARAM, LPARAM, bool& handled)
85 LRESULT DrawsGradient::onPrintClient(WPARAM wParam, LPARAM, bool& handled
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
win32window.h 58 virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam,
65 static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam,
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5events_c.h 30 DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LayerChangesFlusher.h 51 static LRESULT CALLBACK hookCallback(int code, WPARAM, LPARAM);
52 LRESULT hookFired(int code, WPARAM, LPARAM);
  /external/webkit/Source/WebCore/plugins/win/
PluginMessageThrottlerWin.h 40 WPARAM wParam;
51 void appendMessage(HWND, UINT msg, WPARAM, LPARAM);
  /external/webkit/Source/WebKit/win/
WebNodeHighlight.h 56 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM);
68 friend static LRESULT CALLBACK OverlayWndProc(HWND, UINT, WPARAM, LPARAM);
  /external/webkit/Tools/WebKitAPITest/
HostWindow.h 45 static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.h 127 LRESULT onGetMinMaxInfo(WPARAM, LPARAM);
128 LRESULT onSize(WPARAM, LPARAM);
129 LRESULT onClose(WPARAM, LPARAM);
132 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM);
134 void onWebViewWindowPosChanging(WPARAM, LPARAM);
148 static friend LRESULT CALLBACK WebInspectorWndProc(HWND, UINT, WPARAM, LPARAM);
  /external/webkit/Source/WebKit2/UIProcess/
WebInspectorProxy.h 121 static LRESULT CALLBACK InspectorViewWndProc(HWND, UINT, WPARAM, LPARAM);
122 LRESULT wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
124 LRESULT onSizeEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
125 LRESULT onMinMaxInfoEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
126 LRESULT onSetFocusEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
127 LRESULT onCloseEvent(HWND hWnd, UINT message, WPARAM, LPARAM, bool& handled);
  /external/chromium/base/
event_recorder.h 70 LRESULT RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam);
71 LRESULT PlaybackWndProc(int nCode, WPARAM wParam, LPARAM lParam);
  /external/webkit/Tools/MiniBrowser/win/
BrowserWindow.h 52 static LRESULT CALLBACK BrowserWindowWndProc(HWND, UINT, WPARAM, LPARAM);
55 LRESULT wndProc(HWND, UINT, WPARAM, LPARAM);

Completed in 1364 milliseconds

1 2 3 4 5 6