HomeSort by relevance Sort by last modified time
    Searched full:lparam (Results 51 - 75 of 188) sorted by null

1 23 4 5 6 7 8

  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_view_win.h 53 LPARAM l_param) OVERRIDE;
56 LPARAM l_param) OVERRIDE;
62 virtual LRESULT OnNCCalcSize(BOOL w_param, LPARAM l_param) OVERRIDE;
  /external/webkit/Source/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/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/Tools/WebKitAPITest/
HostWindow.cpp 79 LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
81 return DefWindowProcW(hWnd, uMsg, wParam, lParam);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_win.cc 91 BOOL CALLBACK DismissOwnedPopups(HWND window, LPARAM arg) {
156 BOOL CALLBACK DetachPluginWindowsCallback(HWND window, LPARAM param) {
193 WPARAM wparam, LPARAM lparam) {
199 ::SendMessage(GetParent(window), message, wparam, lparam); local
205 return ::DefWindowProc(window, message, wparam, lparam);
454 static BOOL CALLBACK AddChildWindowToVector(HWND hwnd, LPARAM lparam) {
455 std::vector<HWND>* vector = reinterpret_cast<std::vector<HWND>*>(lparam);
607 BOOL CALLBACK EnumChildProc(HWND hwnd, LPARAM lparam)
648 LPARAM lparam = reinterpret_cast<LPARAM>(&invalid_screen_rect); local
    [all...]
  /external/dropbear/libtomcrypt/testprof/
pkcs_1_test.c 10 static const unsigned char lparam[] = { 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 }; local
30 /* pick a random lparam len [0..16] */
41 DO(pkcs_1_oaep_encode(buf[0], l3, lparam, lparamlen, modlen, &yarrow_prng, prng_idx, hash_idx, buf[1], &l1));
45 DO(pkcs_1_oaep_decode(buf[1], l1, lparam, lparamlen, modlen, hash_idx, buf[2], &l2, &res1));
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_lowvideo.h 109 extern LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
141 LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  /external/webkit/Source/WebCore/platform/win/
WindowMessageBroadcaster.cpp 112 LRESULT CALLBACK WindowMessageBroadcaster::SubclassedWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
119 (*it)->windowReceivedMessage(hwnd, message, wParam, lParam);
127 return CallWindowProc(originalWndProc, hwnd, message, wParam, lParam);
WindowMessageListener.h 33 typedef long LPARAM;
41 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM) = 0;
PopupMenuWin.cpp 81 static void translatePoint(LPARAM& lParam, HWND from, HWND to)
84 pt.x = (short)GET_X_LPARAM(lParam);
85 pt.y = (short)GET_Y_LPARAM(lParam);
87 lParam = MAKELPARAM(pt.x, pt.y);
236 translatePoint(msg.lParam, msg.hwnd, m_popup);
760 LRESULT CALLBACK PopupMenuWin::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
769 return popup->wndProc(hWnd, message, wParam, lParam);
772 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
    [all...]
PopupMenuWin.h 110 static LRESULT CALLBACK PopupMenuWndProc(HWND, UINT, WPARAM, LPARAM);
111 LRESULT wndProc(HWND hWnd, UINT message, 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/WebKit/win/
WebNodeHighlight.h 56 virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM);
68 friend static LRESULT CALLBACK OverlayWndProc(HWND, UINT, WPARAM, LPARAM);
FullscreenVideoController.cpp 379 LRESULT FullscreenVideoController::fullscreenClientWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
389 onMouseDown(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
392 onMouseMove(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
395 onMouseUp(IntPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
399 return DefWindowProc(wnd, message, wParam, lParam);
559 LRESULT FullscreenVideoController::hudWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam
    [all...]
  /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/Tools/MiniBrowser/win/
BrowserWindow.h 52 static LRESULT CALLBACK BrowserWindowWndProc(HWND, UINT, WPARAM, LPARAM);
55 LRESULT wndProc(HWND, UINT, WPARAM, LPARAM);
  /external/webkit/Source/WebKit2/WebProcess/win/
WebProcessWin.cpp 146 static BOOL CALLBACK addWindowToVectorIfOwnedByCurrentThread(HWND window, LPARAM lParam)
148 EnumWindowsContext* context = reinterpret_cast<EnumWindowsContext*>(lParam);
171 ::EnumThreadWindows(context.currentThreadID, addWindowToVectorIfOwnedByCurrentThread, reinterpret_cast<LPARAM>(&context));
176 ::EnumChildWindows(windows[i], addWindowToVectorIfOwnedByCurrentThread, reinterpret_cast<LPARAM>(&context));
181 ::EnumChildWindows((*it)->nativeWindow(), addWindowToVectorIfOwnedByCurrentThread, reinterpret_cast<LPARAM>(&context));
  /external/chromium/chrome/browser/
process_singleton.h 138 LPARAM lparam);
143 LPARAM lparam) {
146 return msg_wnd->WndProc(hwnd, message, wparam, lparam);
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_oaep_decode.c 24 @param lparam The session or system data (can be NULL)
25 @param lparamlen The length of the lparam
34 const unsigned char *lparam, unsigned long lparamlen,
127 if (lparam != NULL) {
128 if ((err = hash_memory(hash_idx, lparam, lparamlen, seed, &x)) != CRYPT_OK) {
pkcs_1_oaep_encode.c 24 @param lparam A session or system parameter (can be NULL)
25 @param lparamlen The length of the lparam data
35 const unsigned char *lparam, unsigned long lparamlen,
86 if (lparam != NULL) {
87 if ((err = hash_memory(hash_idx, lparam, lparamlen, DB, &x)) != CRYPT_OK) {
  /external/openssl/apps/
winrand.c 66 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
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/webkit/Tools/TestWebKitAPI/win/
PlatformWebViewWin.cpp 120 LRESULT PlatformWebView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
124 CREATESTRUCT* createStruct = reinterpret_cast<CREATESTRUCT*>(lParam);
131 webView->m_parentWindowMessageObserver->windowReceivedMessage(hWnd, message, wParam, lParam);
136 return ::DefWindowProcW(hWnd, message, wParam, lParam);
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovieWinTimer.cpp 48 static LRESULT CALLBACK TimerWindowWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
58 return DefWindowProc(hWnd, message, wParam, lParam);
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 79 EnumFontFamilies(g_screenDC, family, enumFontFamProc, (LPARAM)this);
84 static int CALLBACK enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam);
91 EnumFontFamilies(g_screenDC, 0, enumFontFamProc, (LPARAM)this);
96 static int CALLBACK enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam);
179 int CALLBACK FontFamilyChecker::enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam)
181 ((FontFamilyChecker*)lParam)->m_exists = true;
185 int CALLBACK ValidFontFamilyFinder::enumFontFamProc(const LOGFONT FAR* lpelf, const TEXTMETRIC FAR* lpntm, DWORD FontType, LPARAM lParam
    [all...]
  /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);

Completed in 375 milliseconds

1 23 4 5 6 7 8