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

1 23 4 5 6

  /external/webkit/Source/WebCore/platform/
PlatformWheelEvent.h 48 typedef unsigned WPARAM;
169 PlatformWheelEvent(HWND, WPARAM, LPARAM, bool isMouseHWheel);
PlatformKeyboardEvent.h 43 typedef unsigned WPARAM;
172 PlatformKeyboardEvent(HWND, WPARAM, LPARAM, Type, bool);
PlatformMouseEvent.h 52 typedef unsigned WPARAM;
163 PlatformMouseEvent(HWND, UINT, WPARAM, LPARAM, bool didActivateWebView = false);
177 PlatformMouseEvent(AEEEvent, uint16 wParam, uint32 dwParam);
  /external/webkit/Source/WebCore/platform/win/
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/Source/WebKit2/Platform/
RunLoop.h 144 static LRESULT CALLBACK RunLoopWndProc(HWND, UINT, WPARAM, LPARAM);
145 LRESULT wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 104 static inline WebEvent::Modifiers modifiersForEvent(WPARAM wparam)
107 if (wparam & MK_CONTROL)
109 if (wparam & MK_SHIFT)
162 static bool isKeypadEvent(WPARAM wParam, LPARAM lParam, WebEvent::Type type)
167 switch (wParam) {
204 static String textFromEvent(WPARAM wparam, WebEvent::Type type)
209 UChar c = static_cast<UChar>(wparam);
    [all...]
  /external/chromium/chrome/browser/ui/views/
native_constrained_window_win.cc 46 WPARAM w_param,
  /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/Source/WebCore/platform/wince/
SharedTimerWinCE.cpp 52 LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
63 return DefWindowProc(hWnd, message, wParam, lParam);
  /external/webkit/Source/WebKit2/Shared/
NativeWebKeyboardEvent.h 50 NativeWebKeyboardEvent(HWND, UINT message, WPARAM, LPARAM);
NativeWebMouseEvent.h 47 NativeWebMouseEvent(HWND, UINT message, WPARAM, LPARAM, bool);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
WindowedPluginTest.cpp 61 LRESULT WindowedPluginTest::staticWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
66 LRESULT result = instance->wndProc(message, wParam, lParam, handled);
70 return ::CallWindowProcW(instance->m_originalWndProc, hwnd, message, wParam, lParam);
  /external/webkit/Tools/MiniBrowser/win/
BrowserWindow.cpp 46 LRESULT CALLBACK BrowserWindow::BrowserWindowWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
51 return browserView->wndProc(window, message, wParam, lParam);
64 return ::DefWindowProc(window, message, wParam, lParam);
67 LRESULT BrowserWindow::wndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
78 lResult = onCommand(LOWORD(wParam), handled);
98 lResult = ::DefWindowProc(window, message, wParam, lParam);
155 SendMessage(m_comboBoxWindow, WM_SETFONT, (WPARAM)GetStockObject(DEFAULT_GUI_FONT), MAKELPARAM(TRUE, 0));
171 int result = ::SendMessage(m_rebarWindow, RB_INSERTBAND, (WPARAM)-1, (LPARAM)&bandInfo)
    [all...]
  /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);
  /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/wince/
WebView.cpp 59 LRESULT CALLBACK WebView::webViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
62 return webView->wndProc(hWnd, message, wParam, lParam);
64 return DefWindowProc(hWnd, message, wParam, lParam);
279 bool WebView::handleMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
289 PlatformMouseEvent mouseEvent(hWnd, message, wParam, lParam);
341 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal)
343 PlatformWheelEvent wheelEvent(hWnd, wParam, lParam, isHorizontal)
    [all...]
  /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);
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)
382 wmId = LOWORD(wParam);
383 wmEvent = HIWORD(wParam);
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 432 LRESULT WebInspectorFrontendClient::onGetMinMaxInfo(WPARAM, LPARAM lParam)
441 LRESULT WebInspectorFrontendClient::onSize(WPARAM, LPARAM)
451 LRESULT WebInspectorFrontendClient::onClose(WPARAM, LPARAM)
465 void WebInspectorFrontendClient::onWebViewWindowPosChanging(WPARAM, LPARAM lParam)
484 static LRESULT CALLBACK WebInspectorWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
488 return ::DefWindowProc(hwnd, msg, wParam, lParam);
492 return client->onGetMinMaxInfo(wParam, lParam);
494 return client->onSize(wParam, lParam);
496 return client->onClose(wParam, 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);
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);
165 lResult = onWheelEvent(hWnd, message, wParam, lParam, handled)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateFullscreenWindow.cpp 125 LRESULT MediaPlayerPrivateFullscreenWindow::staticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
136 return window->wndProc(hWnd, message, wParam, lParam);
138 return ::DefWindowProc(hWnd, message, wParam, lParam);
141 LRESULT MediaPlayerPrivateFullscreenWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
177 lResult = m_client->fullscreenClientWndProc(hWnd, message, wParam, lParam);
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.h 119 virtual LRESULT fullscreenClientWndProc(HWND, UINT message, WPARAM, LPARAM);
140 static LRESULT CALLBACK hudWndProc(HWND, UINT message, WPARAM, LPARAM);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebScrollBarPrivate.idl 69 HRESULT handleMouseEvent([in] OLE_HANDLE hwnd, [in] UINT msg, [in] WPARAM wParam, [in] LPARAM lParam);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
NPNInvalidateRectInvalidatesWindow.cpp 78 virtual LRESULT wndProc(UINT message, WPARAM, LPARAM, bool& handled);
130 LRESULT NPNInvalidateRectInvalidatesWindow::wndProc(UINT message, WPARAM wParam, LPARAM lParam, bool& handled)
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_syswm.h 140 WPARAM wParam; /**< WORD message parameter */

Completed in 2529 milliseconds

1 23 4 5 6