HomeSort by relevance Sort by last modified time
    Searched refs:WPARAM (Results 126 - 147 of 147) sorted by null

1 2 3 4 56

  /external/quake/quake/src/WinQuake/
vid_win.cpp 145 LONG WINAPI MainWndProc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
1363 SendMessage (mainwindow, WM_SETICON, (WPARAM)TRUE, (LPARAM)hIcon);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_sysevents.c 90 LONG (*HandleMessage)(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)=NULL;
251 LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
261 fprintf(stderr, " -- 0x%X, 0x%X\n", wParam, lParam);
270 minimized = HIWORD(wParam);
271 active = (LOWORD(wParam) != WA_INACTIVE) && !minimized;
415 xbuttonval = GET_XBUTTON_WPARAM(wParam);
420 xbuttonval = GET_XBUTTON_WPARAM(wParam);
476 int move = (short)HIWORD(wParam);
    [all...]
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 379 LRESULT FullscreenVideoController::fullscreenClientWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
383 onChar(wParam);
386 onKeyDown(wParam);
399 return DefWindowProc(wnd, message, wParam, lParam);
559 LRESULT FullscreenVideoController::hudWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
564 return DefWindowProc(wnd, message, wParam, lParam);
568 controller->onChar(wParam);
571 controller->onKeyDown(wParam);
    [all...]
  /external/chromium/chrome/browser/ui/views/
about_ipc_dialog.cc 155 INT_PTR CALLBACK DialogProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) {
161 if (wparam == SC_CLOSE) {
168 if (wparam == IDC_Messages && info->hdr.code == LVN_ITEMCHANGED) {
178 if (HIWORD(wparam) == BN_CLICKED)
179 OnButtonClick(LOWORD(wparam));
shell_dialogs_win.cc 168 WPARAM wparam, LPARAM lparam) {
770 // WParam is TRUE since passing a path.
    [all...]
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_drag_win.cc 43 LRESULT CALLBACK MsgFilterProc(int code, WPARAM wparam, LPARAM lparam) {
54 msg->wParam,
65 return CallNextHookEx(msg_hook, code, wparam, lparam);
  /external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp 52 static LRESULT CALLBACK PasteboardOwnerWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
75 lresult = DefWindowProc(hWnd, message, wParam, lParam);
PopupMenuWin.cpp 760 LRESULT CALLBACK PopupMenuWin::PopupMenuWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
769 return popup->wndProc(hWnd, message, wParam, lParam);
783 return ::DefWindowProc(hWnd, message, wParam, lParam);
788 LRESULT PopupMenuWin::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
816 switch (LOWORD(wParam)) {
853 ::SendMessage(client()->hostWindow()->platformPageClient(), message, wParam, lParam);
860 if (isASCIIPrintable(wParam))
865 ::PostMessage(m_popup, WM_HOST_WINDOW_CHAR, wParam, lParam)
    [all...]
  /external/webkit/Source/WebCore/plugins/win/
PluginViewWin.cpp 330 LRESULT CALLBACK PluginView::PluginViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
334 return pluginView->wndProc(hWnd, message, wParam, lParam);
351 PluginView::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
380 m_messageThrottler->appendMessage(hWnd, message, wParam, lParam);
405 m_wmPrintHDC = reinterpret_cast<HDC>(wParam);
410 LRESULT result = ::CallWindowProc(m_pluginWndProc, hWnd, message, wParam, lParam);
525 SendMessage(platformPluginWidget(), WM_PRINTCLIENT, reinterpret_cast<WPARAM>(hdc), PRF_CLIENT | PRF_CHILDREN | PRF_OWNED);
545 npEvent.wParam = 0
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.cc     [all...]
  /external/chromium/chrome/browser/automation/
automation_provider_win.cc 160 WPARAM wparam_flags = 0;
  /external/openssl/apps/
s_socket.c 131 static LONG FAR PASCAL topHookProc(HWND hwnd, UINT message, WPARAM wParam,
145 return CallWindowProc(lpTopWndProc,hwnd,message,wParam,lParam);
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.cpp 315 static LRESULT CALLBACK SurfaceWindowProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) {
323 return CallWindowProc(prevWndFunc, hwnd, message, wparam, lparam);
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovieGWorld.cpp 379 LRESULT QTMovieGWorld::fullscreenWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
387 return DefWindowProc(wnd, message, wParam, lParam);
389 return movie->m_private->m_fullscreenClient->fullscreenClientWndProc(wnd, message, wParam, lParam);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc 79 virtual bool OnMessage(UINT msg, WPARAM wp, LPARAM lp, LRESULT& result);
593 bool DeviceWatcher::OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam,
596 if (wParam == DBT_DEVICEARRIVAL ||
597 wParam == DBT_DEVICEREMOVECOMPLETE) {
  /external/libpng/contrib/gregbook/
rpng2-win.c 148 LRESULT CALLBACK rpng2_win_wndproc(HWND, UINT, WPARAM, LPARAM);
607 return msg.wParam;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5events.c 554 LRESULT DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
561 active = (wParam && (GetForegroundWindow() == hwnd));
582 WPARAM BitsPerPixel;
588 BitsPerPixel = wParam;
612 if ((wParam&0xFFF0)==SC_SCREENSAVE ||
613 (wParam&0xFFF0)==SC_MONITORPOWER)
628 wmmsg.wParam = wParam;
637 return CallWindowProc(userWindowProc, hwnd, msg, wParam, lParam)
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 175 LRESULT CALLBACK dummyWndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
177 return DefWindowProc(hwnd, uMsg, wParam, lParam);
  /external/chromium/chrome/browser/
external_tab_container_win.cc 267 NativeWebKeyboardEvent keyboard_event(msg.hwnd, msg.message, msg.wParam,
669 event.os_event.wParam, event.os_event.lParam);
848 WPARAM wparam,
853 if ((wparam == VK_TAB) && !base::win::IsCtrlPressed()) {
866 msg.wParam = wparam;
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 211 static LRESULT CALLBACK DumpRenderTreeWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
225 return DefWindowProc(hWnd, msg, wParam, lParam);
    [all...]
LayoutTestControllerWin.cpp 820 ::SendMessage(webViewWindow, flag ? WM_SETFOCUS : WM_KILLFOCUS, (WPARAM)::GetDesktopWindow(), 0);
    [all...]
  /external/chromium/base/
message_loop_unittest.cc     [all...]

Completed in 1077 milliseconds

1 2 3 4 56