/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
LayerChangesFlusher.cpp | 72 LRESULT LayerChangesFlusher::hookCallback(int code, WPARAM wParam, LPARAM lParam) 74 return shared().hookFired(code, wParam, lParam); 77 LRESULT LayerChangesFlusher::hookFired(int code, WPARAM wParam, LPARAM lParam) 92 LRESULT result = ::CallNextHookEx(m_hook, code, 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);
|
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/chromium/base/win/ |
wrapped_window_proc_unittest.cc | 16 WPARAM wparam, LPARAM lparam) { 19 return DefWindowProc(hwnd, message, wparam, lparam);
|
/external/webkit/Source/WebCore/plugins/win/ |
PluginMessageThrottlerWin.h | 41 LPARAM lParam; 51 void appendMessage(HWND, UINT msg, WPARAM, LPARAM);
|
PluginMessageThrottlerWin.cpp | 71 void PluginMessageThrottlerWin::appendMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) 78 message->lParam = lParam; 111 ::CallWindowProc(m_pluginView->pluginWndProc(), message->hWnd, message->msg, message->wParam, message->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);
|
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/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); 54 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); 64 return ::DefWindowProc(window, message, wParam, lParam); 67 LRESULT BrowserWindow::wndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam) 82 onSize(LOWORD(lParam), HIWORD(lParam)); 98 lResult = ::DefWindowProc(window, message, wParam, lParam); [all...] |
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
DHParameters.java | 22 int lParam) 24 if (lParam == 0) 29 return lParam < DEFAULT_MINIMUM_LENGTH ? lParam : DEFAULT_MINIMUM_LENGTH;
|
/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/chromium/third_party/libjingle/source/talk/base/ |
win32window.h | 58 virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, 66 LPARAM lParam);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
MediaPlayerPrivateFullscreenWindow.cpp | 125 LRESULT MediaPlayerPrivateFullscreenWindow::staticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 130 LPCREATESTRUCT lpcs = reinterpret_cast<LPCREATESTRUCT>(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) 156 LPWINDOWPOS wp = reinterpret_cast<LPWINDOWPOS>(lParam); 177 lResult = m_client->fullscreenClientWndProc(hWnd, message, wParam, lParam);
|
MediaPlayerPrivateFullscreenWindow.h | 36 typedef long LPARAM; 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);
|
/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/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/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/skia/include/views/ |
SkOSWindow_Win.h | 44 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
/external/skia/legacy/include/views/ |
SkOSWindow_Win.h | 36 bool wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
/external/webkit/Source/WebKit/win/ |
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));
|
WebView.h | 830 bool handleMouseEvent(UINT, WPARAM, LPARAM); 832 bool handleContextMenuEvent(WPARAM, LPARAM); 833 bool onMeasureItem(WPARAM, LPARAM); 834 bool onDrawItem(WPARAM, LPARAM); 835 bool onInitMenuPopup(WPARAM, LPARAM); 836 bool onUninitMenuPopup(WPARAM, LPARAM); 837 void performContextMenuAction(WPARAM, LPARAM, bool byPosition); 838 bool mouseWheel(WPARAM, LPARAM, bool isMouseHWheel); 839 bool verticalScroll(WPARAM, LPARAM); 840 bool horizontalScroll(WPARAM, LPARAM); [all...] |
/external/webkit/Source/WebKit2/Platform/win/ |
RunLoopWin.cpp | 39 LRESULT CALLBACK RunLoop::RunLoopWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 44 return runLoop->wndProc(hWnd, message, wParam, lParam); 47 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); 54 return ::DefWindowProc(hWnd, message, wParam, lParam); 57 LRESULT RunLoop::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 68 return ::DefWindowProc(hWnd, message, wParam, lParam);
|
/external/webkit/Source/WebKit/chromium/src/win/ |
WebInputEventFactory.cpp | 45 static bool isKeyPad(WPARAM wparam, LPARAM lparam) 50 keypad = (lparam >> 16) & KF_EXTENDED; 62 keypad = !((lparam >> 16) & KF_EXTENDED); 100 WPARAM wparam, LPARAM lparam) 152 if (LOWORD(lparam) > 1) 154 if (isKeyPad(wparam, lparam)) 166 static LPARAM GetRelativeCursorPos(HWND hwnd) 180 WPARAM wparam, LPARAM lparam [all...] |
/external/dropbear/libtomcrypt/testprof/ |
katja_test.c | 11 static unsigned char lparam[] = { 0x01, 0x02, 0x03, 0x04 }; local 60 /* encrypt the key (without lparam) */ 110 /* encrypt the key (with lparam) */ 114 DO(katja_encrypt_key(in, kat_msgsize, out, &len, lparam, sizeof(lparam), &yarrow_prng, prng_idx, hash_idx, &key)); 117 DO(katja_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat2, &key)); 126 DO(katja_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat, &key));
|