/external/lzma/CPP/Windows/Control/ |
D | Window2.cpp | 29 static LRESULT CALLBACK WindowProcedure(HWND aHWND, UINT message, WPARAM wParam, LPARAM lParam) in WindowProcedure() argument 41 return DefWindowProcW(aHWND, message, wParam, lParam); in WindowProcedure() 44 return DefWindowProc(aHWND, message, wParam, lParam); in WindowProcedure() 46 return window->OnMessage(message, wParam, lParam); in WindowProcedure() 123 LRESULT CWindow2::DefProc(UINT message, WPARAM wParam, LPARAM lParam) in DefProc() argument 127 return DefWindowProcW(_window, message, wParam, lParam); in DefProc() 130 return DefWindowProc(_window, message, wParam, lParam); in DefProc() 133 LRESULT CWindow2::OnMessage(UINT message, WPARAM wParam, LPARAM lParam) in OnMessage() argument 143 if (OnCommand(wParam, lParam, result)) in OnMessage() 147 if (OnNotify((UINT)wParam, (LPNMHDR) lParam, result)) in OnMessage() [all …]
|
D | Dialog.cpp | 19 static INT_PTR APIENTRY DialogProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam) in DialogProcedure() argument 29 try { return BoolToBOOL(dialog->OnMessage(message, wParam, lParam)); } in DialogProcedure() 33 bool CDialog::OnMessage(UINT message, WPARAM wParam, LPARAM lParam) in OnMessage() argument 38 case WM_COMMAND: return OnCommand(wParam, lParam); in OnMessage() 39 case WM_NOTIFY: return OnNotify((UINT)wParam, (LPNMHDR) lParam); in OnMessage() 40 case WM_TIMER: return OnTimer(wParam, lParam); in OnMessage() 41 case WM_SIZE: return OnSize(wParam, LOWORD(lParam), HIWORD(lParam)); in OnMessage() 57 bool CDialog::OnCommand(WPARAM wParam, LPARAM lParam) in OnCommand() argument 59 return OnCommand(HIWORD(wParam), LOWORD(wParam), lParam); in OnCommand()
|
D | ListView.cpp | 100 static LRESULT APIENTRY ListViewSubclassProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in ListViewSubclassProc() argument 106 return w->OnMessage(message, wParam, lParam); in ListViewSubclassProc() 109 LRESULT CListView2::OnMessage(UINT message, WPARAM wParam, LPARAM lParam) in OnMessage() argument 113 return CallWindowProcW(_origWindowProc, *this, message, wParam, lParam); in OnMessage() 116 return CallWindowProc(_origWindowProc, *this, message, wParam, lParam); in OnMessage()
|
D | Window2.h | 13 LRESULT DefProc(UINT message, WPARAM wParam, LPARAM lParam); 28 virtual LRESULT OnMessage(UINT message, WPARAM wParam, LPARAM lParam); 31 virtual bool OnCommand(WPARAM wParam, LPARAM lParam, LRESULT &result);
|
D | Dialog.h | 74 LRESULT SendItemMessage(int itemID, UINT message, WPARAM wParam, LPARAM lParam) in SendItemMessage() argument 75 { return SendDlgItemMessage(_window, itemID, message, wParam, lParam); } in SendItemMessage() 90 virtual bool OnMessage(UINT message, WPARAM wParam, LPARAM lParam); 92 virtual bool OnCommand(WPARAM wParam, LPARAM lParam);
|
/external/opencv3/samples/directx/ |
D | d3dsample.hpp | 74 virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 79 if (wParam >= '0' && wParam <= '2') in WndProc() 81 m_mode = static_cast<MODE>((char)wParam - '0'); in WndProc() 84 else if (wParam == VK_SPACE) in WndProc() 89 else if (wParam == VK_ESCAPE) in WndProc() 103 return ::DefWindowProc(hWnd, message, wParam, lParam); in WndProc()
|
D | winapp.hpp | 88 return static_cast<int>(msg.wParam); in run() 101 static LRESULT CALLBACK StaticWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in StaticWndProc() argument 115 return pWnd->WndProc(hWnd, message, wParam, lParam); in StaticWndProc() 117 return ::DefWindowProc(hWnd, message, wParam, lParam); in StaticWndProc() 123 virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) = 0;
|
/external/deqp/framework/platform/win32/ |
D | tcuWin32Window.cpp | 31 static LRESULT CALLBACK windowProcCallback (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in windowProcCallback() argument 35 return window->windowProc(uMsg, wParam, lParam); in windowProcCallback() 37 return DefWindowProc(hWnd, uMsg, wParam, lParam); in windowProcCallback() 139 LRESULT Window::windowProc (UINT uMsg, WPARAM wParam, LPARAM lParam) in windowProc() argument 150 if (wParam == VK_ESCAPE) in windowProc() 158 return DefWindowProc(m_window, uMsg, wParam, lParam); in windowProc()
|
/external/opencv3/modules/highgui/src/ |
D | window_w32.cpp | 206 static LRESULT CALLBACK HighGUIProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); 207 static LRESULT CALLBACK WindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); 208 static LRESULT CALLBACK MainWindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); 1310 MainWindowProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) in MainWindowProc() argument 1314 return DefWindowProc(hwnd, uMsg, wParam, lParam); in MainWindowProc() 1319 ::SendMessage(window->hwnd, uMsg, wParam, lParam); in MainWindowProc() 1334 LRESULT retval = DefWindowProc(hwnd, uMsg, wParam, lParam); in MainWindowProc() 1398 if(LOWORD(wParam) == WA_ACTIVE || LOWORD(wParam) == WA_CLICKACTIVE) in MainWindowProc() 1406 int flags = (wParam & MK_LBUTTON ? CV_EVENT_FLAG_LBUTTON : 0)| in MainWindowProc() 1407 (wParam & MK_RBUTTON ? CV_EVENT_FLAG_RBUTTON : 0)| in MainWindowProc() [all …]
|
/external/webrtc/webrtc/base/ |
D | win32window_unittest.cc | 24 virtual bool OnMessage(UINT uMsg, WPARAM wParam, in OnMessage() argument 27 msg_.wParam = wParam; in OnMessage() 49 EXPECT_EQ(1, wnd.msg().wParam); in TEST()
|
D | win32window.cc | 77 bool Win32Window::OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, in OnMessage() argument 91 WPARAM wParam, LPARAM lParam) { in WndProc() argument 102 bool handled = that->OnMessage(uMsg, wParam, lParam, result); in WndProc() 118 return ::DefWindowProc(hwnd, uMsg, wParam, lParam); in WndProc()
|
D | win32socketserver.cc | 156 virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, 161 bool OnSocketNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT& result); 162 bool OnDnsNotify(WPARAM wParam, LPARAM lParam, LRESULT& result); 176 bool Win32Socket::EventSink::OnMessage(UINT uMsg, WPARAM wParam, in OnMessage() argument 181 return OnSocketNotify(uMsg, wParam, lParam, result); in OnMessage() 183 return OnDnsNotify(wParam, lParam, result); in OnMessage() 188 bool Win32Socket::EventSink::OnSocketNotify(UINT uMsg, WPARAM wParam, in OnSocketNotify() argument 202 parent_->OnSocketNotify(static_cast<SOCKET>(wParam), wsa_event, wsa_error); in OnSocketNotify() 206 bool Win32Socket::EventSink::OnDnsNotify(WPARAM wParam, LPARAM lParam, in OnDnsNotify() argument 212 parent_->OnDnsNotify(reinterpret_cast<HANDLE>(wParam), error); in OnDnsNotify()
|
D | win32window.h | 39 virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, 46 static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam,
|
/external/skia/src/views/win/ |
D | skia_win.cpp | 111 return (int) msg.wParam; in main_common() 116 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { in WndProc() argument 119 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc() 125 if (window && window->wndProc(hWnd, message, wParam, lParam)) { in WndProc() 128 return DefWindowProc(hWnd, message, wParam, lParam); in WndProc()
|
/external/vulkan-validation-layers/demos/smoke/ |
D | ShellWin32.h | 45 static LRESULT CALLBACK window_proc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in window_proc() argument 51 return DefWindowProc(hwnd, uMsg, wParam, lParam); in window_proc() 53 return shell->handle_message(uMsg, wParam, lParam); in window_proc()
|
/external/lzma/CPP/Windows/ |
D | Window.h | 225 LRESULT SendMessage(UINT message, WPARAM wParam = 0, LPARAM lParam = 0) 226 { return ::SendMessage(_window, message, wParam, lParam) ;} 228 LRESULT SendMessageW(UINT message, WPARAM wParam = 0, LPARAM lParam = 0) 229 { return ::SendMessageW(_window, message, wParam, lParam) ;} 232 bool PostMessage(UINT message, WPARAM wParam = 0, LPARAM lParam = 0) 233 { return BOOLToBool(::PostMessage(_window, message, wParam, lParam)) ;} 235 LRESULT PostMessageW(UINT message, WPARAM wParam = 0, LPARAM lParam = 0) 236 { return ::PostMessageW(_window, message, wParam, lParam) ;}
|
/external/pdfium/fpdfsdk/src/pdfwindow/ |
D | PWL_EditCtrl.cpp | 76 intptr_t wParam, in OnNotify() argument 78 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 82 switch (wParam) { in OnNotify() 85 pChild->OnNotify(pWnd, PNM_SETSCROLLINFO, wParam, lParam); in OnNotify() 91 switch (wParam) { in OnNotify() 94 pChild->OnNotify(pWnd, PNM_SETSCROLLPOS, wParam, lParam); in OnNotify() 101 switch (wParam) { in OnNotify() 108 if (PWL_CARET_INFO* pCaretInfo = (PWL_CARET_INFO*)wParam) { in OnNotify()
|
D | PWL_ListBox.cpp | 319 intptr_t wParam, in OnNotify() argument 321 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 327 switch (wParam) { in OnNotify() 330 pChild->OnNotify(pWnd, PNM_SETSCROLLINFO, wParam, lParam); in OnNotify() 336 switch (wParam) { in OnNotify() 339 pChild->OnNotify(pWnd, PNM_SETSCROLLPOS, wParam, lParam); in OnNotify() 346 switch (wParam) { in OnNotify()
|
D | PWL_Note.cpp | 154 intptr_t wParam, in OnNotify() argument 157 if (wParam == SBT_VSCROLL) { in OnNotify() 177 CPWL_Edit::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 182 if (PWL_CARET_INFO* pInfo = (PWL_CARET_INFO*)wParam) { in OnNotify() 468 intptr_t wParam, in OnNotify() argument 496 if (PWL_CARET_INFO* pInfo = (PWL_CARET_INFO*)wParam) { in OnNotify() 524 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() 935 intptr_t wParam, in OnNotify() argument 946 if (PWL_CARET_INFO* pInfo = (PWL_CARET_INFO*)wParam) { in OnNotify() 964 CPWL_Wnd::OnNotify(pWnd, msg, wParam, lParam); in OnNotify() [all …]
|
/external/icu/icu4c/source/samples/layout/ |
D | layout.cpp | 114 return msg.wParam; in WinMain() 117 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 179 switch (LOWORD(wParam)) in WndProc() 260 switch (LOWORD(wParam)) { in WndProc() 354 return DefWindowProc(hwnd, message, wParam, lParam); in WndProc()
|
D | clayout.c | 115 return msg.wParam; in WinMain() 118 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 181 switch (LOWORD(wParam)) in WndProc() 262 switch (LOWORD(wParam)) { in WndProc() 359 return DefWindowProc(hwnd, message, wParam, lParam); in WndProc()
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/ |
D | d3d11winmain.cpp | 40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 55 return DefWindowProc(hwnd, message, wParam, lParam); in WndProc() 171 return (int) msg.wParam; in main()
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/ |
D | d3d10winmain.cpp | 40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument 55 return DefWindowProc(hwnd, message, wParam, lParam); in WndProc() 187 return (int) msg.wParam; in main()
|
/external/mesa3d/src/gallium/targets/graw-gdi/ |
D | graw_gdi.c | 40 WPARAM wParam, in window_proc() argument 49 return DefWindowProc(hWnd, uMsg, wParam, lParam); in window_proc()
|
/external/webrtc/talk/media/devices/ |
D | gdivideorenderer.cc | 64 virtual bool OnMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, 165 bool GdiVideoRenderer::VideoWindow::OnMessage(UINT uMsg, WPARAM wParam, in OnMessage() argument 185 OnRenderFrame(reinterpret_cast<const VideoFrame*>(wParam)); in OnMessage()
|