/external/chromium/chrome/browser/ui/views/status_icons/ |
status_tray_win.h | 22 LPARAM lparam); 32 LPARAM lparam);
|
status_tray_win.cc | 43 LPARAM lparam) { 47 return msg_wnd->WndProc(hwnd, message, wparam, lparam); 49 return ::DefWindowProc(hwnd, message, wparam, lparam); 55 LPARAM lparam) { 66 switch (lparam) { 79 win_icon->HandleClickEvent(p.x, p.y, lparam == WM_LBUTTONDOWN); 85 return ::DefWindowProc(hwnd, message, wparam, lparam);
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebInspectorProxyWin.cpp | 72 LRESULT CALLBACK WebInspectorProxy::InspectorViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 77 return inspectorView->wndProc(hWnd, message, wParam, lParam); 80 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); 87 return ::DefWindowProc(hWnd, message, wParam, lParam); 90 LRESULT WebInspectorProxy::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 97 lResult = onSizeEvent(hWnd, message, wParam, lParam, handled); 100 lResult = onMinMaxInfoEvent(hWnd, message, wParam, lParam, handled); 103 lResult = onSetFocusEvent(hWnd, message, wParam, lParam, 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...] |
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...] |
WebPopupMenuProxyWin.cpp | 65 static void translatePoint(LPARAM& lParam, HWND from, HWND to) 68 pt.x = static_cast<short>(GET_X_LPARAM(lParam)); 69 pt.y = static_cast<short>(GET_Y_LPARAM(lParam)); 71 lParam = MAKELPARAM(pt.x, pt.y); 74 LRESULT CALLBACK WebPopupMenuProxyWin::WebPopupMenuProxyWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 79 return popupMenuProxy->wndProc(hWnd, message, wParam, lParam); 82 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam); 89 return ::DefWindowProc(hWnd, message, wParam, lParam); [all...] |
WebView.cpp | 106 LRESULT CALLBACK WebView::WebViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) 111 return webView->wndProc(hWnd, message, wParam, lParam); 114 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(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) [all...] |
/external/webkit/Source/WebCore/platform/win/ |
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 didActivateWebView [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...] |
/external/chromium/chrome/browser/ui/webui/options/ |
font_settings_utils_win.cc | 16 LPARAM lparam) { 18 reinterpret_cast<std::set<std::wstring>*>(lparam); 38 (LPARAM)&font_names, 0);
|
/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...] |
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); 302 PlatformMouseEvent moveEvent(hWnd, WM_MOUSEMOVE, 0, lParam, false); 341 bool WebView::handleMouseWheel(HWND hWnd, WPARAM wParam, LPARAM lParam, bool isHorizontal [all...] |
/external/chromium/base/win/ |
wrapped_window_proc.h | 41 // WPARAM wparam, LPARAM lparam) { 57 WPARAM wparam, LPARAM lparam) { 60 rv = proc(hwnd, message, wparam, lparam);
|
/external/webkit/Source/WebKit2/Shared/win/ |
NativeWebKeyboardEventWin.cpp | 33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) 34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(hwnd, message, wParam, lParam)) 40 m_nativeEvent.lParam = lParam;
|
NativeWebMouseEventWin.cpp | 33 NativeWebMouseEvent::NativeWebMouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView) 34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(hwnd, message, wParam, lParam, didActivateWebView)) 40 m_nativeEvent.lParam = lParam;
|
/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)
|
/external/chromium/base/ |
event_recorder.cc | 26 LPARAM lParam) { 28 return EventRecorder::current()->RecordWndProc(nCode, wParam, lParam); 32 LPARAM lParam) { 34 return EventRecorder::current()->PlaybackWndProc(nCode, wParam, lParam); 164 LRESULT EventRecorder::RecordWndProc(int nCode, WPARAM wParam, LPARAM lParam) { 171 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam); 176 return ::CallNextHookEx(journal_hook_, nCode, wParam, lParam); [all...] |
/external/chromium/chrome/browser/renderer_host/ |
render_widget_host_view_win.h | 196 UINT message, WPARAM wparam, LPARAM lparam, BOOL& handled); 198 UINT message, WPARAM wparam, LPARAM lparam, BOOL& handled); 200 UINT message, WPARAM wparam, LPARAM lparam, BOOL& handled); 202 UINT message, WPARAM wparam, LPARAM lparam, BOOL& handled); 204 UINT message, WPARAM wparam, LPARAM lparam, BOOL& handled) [all...] |
/external/dropbear/libtomcrypt/src/pk/katja/ |
katja_decrypt_key.c | 26 @param lparam The system "lparam" value 27 @param lparamlen The length of the lparam value (octets) 35 const unsigned char *lparam, unsigned long lparamlen, 90 err = pkcs_1_oaep_decode(tmp, x, lparam, lparamlen, modulus_bitlen, hash_idx,
|
katja_encrypt_key.c | 26 @param lparam The system "lparam" for the encryption 27 @param lparamlen The length of lparam (octets) 36 const unsigned char *lparam, unsigned long lparamlen, 73 if ((err = pkcs_1_oaep_encode(in, inlen, lparam,
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_decrypt_key.c | 26 @param lparam The system "lparam" value 27 @param lparamlen The length of the lparam value (octets) 36 const unsigned char *lparam, unsigned long lparamlen, 90 err = pkcs_1_oaep_decode(tmp, x, lparam, lparamlen, modulus_bitlen, hash_idx,
|
rsa_encrypt_key.c | 26 @param lparam The system "lparam" for the encryption 27 @param lparamlen The length of lparam (octets) 37 const unsigned char *lparam, unsigned long lparamlen, 79 if ((err = pkcs_1_oaep_encode(in, inlen, lparam,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
win32window.cc | 90 bool Win32Window::OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, 104 WPARAM wParam, LPARAM lParam) { 108 CREATESTRUCT* cs = reinterpret_cast<CREATESTRUCT*>(lParam); 115 bool handled = that->OnMessage(uMsg, wParam, lParam, result); 131 return ::DefWindowProc(hwnd, uMsg, 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/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); 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) 393 PrintView(hWnd, message, wParam, lParam); 396 return DefWindowProc(hWnd, message, wParam, lParam); [all...] |