/external/lzma/CPP/7zip/UI/FileManager/ |
D | MyWindowsNew.h | 58 STDMETHOD(SetProgressValue)(HWND hwnd, ULONGLONG ullCompleted, ULONGLONG ullTotal) = 0; 59 STDMETHOD(SetProgressState)(HWND hwnd, TBPFLAG tbpFlags) = 0; 60 STDMETHOD(RegisterTab)(HWND hwndTab, HWND hwndMDI) = 0; 61 STDMETHOD(UnregisterTab)(HWND hwndTab) = 0; 62 STDMETHOD(SetTabOrder)(HWND hwndTab, HWND hwndInsertBefore) = 0; 63 STDMETHOD(SetTabActive)(HWND hwndTab, HWND hwndMDI, DWORD dwReserved) = 0; 64 STDMETHOD(ThumbBarAddButtons)(HWND hwnd, UINT cButtons, LPTHUMBBUTTON pButton) = 0; 65 STDMETHOD(ThumbBarUpdateButtons)(HWND hwnd, UINT cButtons, LPTHUMBBUTTON pButton) = 0; 66 STDMETHOD(ThumbBarSetImageList)(HWND hwnd, HIMAGELIST himl) = 0; 67 STDMETHOD(SetOverlayIcon)(HWND hwnd, HICON hIcon, LPCWSTR pszDescription) = 0; [all …]
|
D | LangUtils.h | 22 void LangSetDlgItemText(HWND dialog, UInt32 controlID, UInt32 langID); 23 void LangSetDlgItems(HWND dialog, const UInt32 *ids, unsigned numItems); 24 void LangSetDlgItems_Colon(HWND dialog, const UInt32 *ids, unsigned numItems); 25 void LangSetWindowText(HWND window, UInt32 langID);
|
D | BrowseDialog.h | 8 bool MyBrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR path, UString &resultPath); 9 bool MyBrowseForFile(HWND owner, LPCWSTR title, LPCWSTR path, LPCWSTR filterDescription, LPCWSTR fi… 19 bool Dlg_CreateFolder(HWND wnd, UString &destName);
|
/external/webrtc/webrtc/examples/peerconnection/client/ |
D | main_wnd.h | 103 HWND handle() const { return wnd_; } in handle() 107 VideoRenderer(HWND wnd, int width, int height, 132 HWND wnd_; 166 static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp); 169 void CreateChildWindow(HWND* wnd, ChildWindowID id, const wchar_t* class_name, 182 HWND wnd_; 184 HWND edit1_; 185 HWND edit2_; 186 HWND label1_; 187 HWND label2_; [all …]
|
/external/webrtc/webrtc/modules/desktop_capture/win/ |
D | screen_capturer_win_magnifier.h | 53 typedef BOOL(WINAPI* MagImageScalingCallback)(HWND hwnd, 63 typedef BOOL(WINAPI* MagSetWindowSourceFunc)(HWND hwnd, RECT rect); 64 typedef BOOL(WINAPI* MagSetWindowFilterListFunc)(HWND hwnd, 67 HWND* pHWND); 69 HWND hwnd, 72 static BOOL WINAPI OnMagImageScalingCallback(HWND hwnd, 109 HWND excluded_window_; 137 HWND host_window_; 139 HWND magnifier_window_;
|
/external/lzma/CPP/Windows/Control/ |
D | Dialog.h | 14 CDialog(HWND wnd = NULL): CWindow(wnd){}; in CWindow() 17 HWND GetItem(int itemID) const in GetItem() 63 HWND GetNextGroupItem(HWND control, bool previous) in GetNextGroupItem() 65 HWND GetNextTabItem(HWND control, bool previous) in GetNextTabItem() 105 virtual bool OnButtonClicked(int buttonID, HWND buttonHWND); 129 bool Create(LPCTSTR templateName, HWND parentWindow); 130 …bool Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindow);… in Create() 132 bool Create(LPCWSTR templateName, HWND parentWindow); 141 INT_PTR Create(LPCTSTR templateName, HWND parentWindow); 142 …INT_PTR Create(UINT resID, HWND parentWindow) { return Create(MAKEINTRESOURCEW(resID), parentWindo… in Create() [all …]
|
D | PropertyPage.h | 15 INT_PTR APIENTRY ProperyPageProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam); 20 CPropertyPage(HWND window = NULL): CDialog(window){}; in CDialog() 22 void Changed() { PropSheet_Changed(GetParent(), (HWND)*this); } in Changed() 23 void UnChanged() { PropSheet_UnChanged(GetParent(), (HWND)*this); } in UnChanged() 46 INT_PTR MyPropertySheet(const CObjectVector<CPageInfo> &pagesInfo, HWND hwndParent, const UString &…
|
D | Dialog.cpp | 19 static INT_PTR APIENTRY DialogProcedure(HWND dialogHWND, UINT message, WPARAM wParam, LPARAM lParam) in DialogProcedure() 65 return OnButtonClicked(itemID, (HWND)lParam); in OnCommand() 69 bool CDialog::OnButtonClicked(int buttonID, HWND /* buttonHWND */) in OnButtonClicked() argument 193 bool CModelessDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() 195 …HWND aHWND = CreateDialogParam(g_hInstance, templateName, parentWindow, DialogProcedure, (LPARAM)t… in Create() 202 INT_PTR CModalDialog::Create(LPCTSTR templateName, HWND parentWindow) in Create() 209 bool CModelessDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create() 211 HWND aHWND; in Create() 233 INT_PTR CModalDialog::Create(LPCWSTR templateName, HWND parentWindow) in Create()
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | cropping_window_capturer_win.cc | 26 TopWindowVerifierContext(HWND selected_window, HWND excluded_window) in TopWindowVerifierContext() 32 HWND selected_window; 33 HWND excluded_window; 41 BOOL CALLBACK TopWindowVerifier(HWND hwnd, LPARAM param) { in TopWindowVerifier() 131 HWND selected = reinterpret_cast<HWND>(selected_window()); in ShouldUseScreenCapturer() 152 selected, reinterpret_cast<HWND>(excluded_window())); in ShouldUseScreenCapturer() 196 HWND hwnd = reinterpret_cast<HWND>(selected_window()); in GetWindowRectInVirtualScreen()
|
D | mouse_cursor_monitor_win.cc | 25 explicit MouseCursorMonitorWin(HWND window); 38 HWND window_; 49 MouseCursorMonitorWin::MouseCursorMonitorWin(HWND window) in MouseCursorMonitorWin() 116 HWND windowUnderCursor = WindowFromPoint(cursor_info.ptScreenPos); in Capture() 164 return new MouseCursorMonitorWin(reinterpret_cast<HWND>(window)); in CreateForWindow()
|
/external/lzma/CPP/Windows/ |
D | Window.h | 39 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } in MySetWindowText() 41 bool MySetWindowText(HWND wnd, LPCWSTR s); 58 HWND _window; 60 CWindow(HWND newWindow = NULL): _window(newWindow){}; in _window() 61 CWindow& operator=(HWND newWindow) 66 operator HWND() const { return _window; } in HWND() function 67 void Attach(HWND newWindow) { _window = newWindow; } in Attach() 68 HWND Detach() in Detach() 70 HWND window = _window; in Detach() 77 HWND GetParent() const { return ::GetParent(_window); } in GetParent() [all …]
|
D | Shell.cpp | 140 bool BrowseForFolder(HWND, LPCTSTR, UINT, LPCTSTR, CSysString &) in BrowseForFolder() argument 145 bool BrowseForFolder(HWND /* owner */, LPCTSTR /* title */, in BrowseForFolder() argument 177 int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc() 206 bool BrowseForFolder(HWND owner, LPCTSTR title, UINT ulFlags, in BrowseForFolder() 230 bool BrowseForFolder(HWND owner, LPCTSTR title, in BrowseForFolder() 276 int CALLBACK BrowseCallbackProc2(HWND hwnd, UINT uMsg, LPARAM /* lp */, LPARAM data) in BrowseCallbackProc2() 304 static bool BrowseForFolder(HWND owner, LPCWSTR title, UINT ulFlags, in BrowseForFolder() 319 bool BrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR initialFolder, UString &resultPath) in BrowseForFolder()
|
/external/swiftshader/src/Main/ |
D | FrameBufferWin.hpp | 32 FrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin); 39 …virtual void flip(HWND windowOverride, void *source, Format sourceFormat, size_t sourceStride) = 0; 40 …virtual void blit(HWND windowOverride, void *source, const Rect *sourceRect, const Rect *destRect,… 49 void updateBounds(HWND windowOverride); 51 HWND windowHandle; 57 sw::FrameBufferWin *createFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen,…
|
D | FrameBufferGDI.hpp | 25 FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin); 32 void flip(HWND windowOverride, void *source, Format sourceFormat, size_t sourceStride) override; 33 …void blit(HWND windowOverride, void *source, const Rect *sourceRect, const Rect *destRect, Format … 45 void init(HWND bitmapWindow); 50 HWND bitmapWindow;
|
D | FrameBufferWin.cpp | 19 …FrameBufferWin::FrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool top… in FrameBufferWin() 37 void FrameBufferWin::updateBounds(HWND windowOverride) in updateBounds() 39 HWND window = windowOverride ? windowOverride : windowHandle; in updateBounds() 58 sw::FrameBufferWin *createFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen,… in createFrameBufferWin() 75 sw::FrameBuffer *createFrameBuffer(void *display, HWND window, int width, int height) in createFrameBuffer()
|
D | FrameBufferDD.hpp | 27 FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin); 34 void flip(HWND windowOverride, void *source, Format sourceFormat, size_t sourceStride) override; 35 …void blit(HWND windowOverride, void *source, const Rect *sourceRect, const Rect *destRect, Format … 53 void updateClipper(HWND windowOverride);
|
/external/skia/src/views/win/ |
D | SkOSWindow_win.cpp | 43 void post_skwinevent(HWND hwnd) in post_skwinevent() 120 bool SkOSWindow::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { in wndProc() 225 GetWindowRect((HWND)fHWND, &r); in updateSize() 235 InvalidateRect((HWND)fHWND, &rect, FALSE); in onHandleInval() 243 SetWindowTextA((HWND)fHWND, title); in onSetTitle() 303 post_skwinevent((HWND)hWND); in SignalNonEmptyQueue() 309 VOID CALLBACK sk_timer_proc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime) in sk_timer_proc() 332 HDC dc = GetDC((HWND)fHWND); in attachGL() 376 wglMakeCurrent(GetDC((HWND)fHWND), 0); in detachGL() 382 HDC dc = GetDC((HWND)fHWND); in presentGL() [all …]
|
/external/skia/tools/viewer/sk_app/win/ |
D | GLWindowContext_win.cpp | 24 GLWindowContext_win(HWND, const DisplayParams&); 34 HWND fHWND; 40 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) in GLWindowContext_win() 120 HDC dc = GetDC((HWND)fHWND); in onSwapBuffers() 122 ReleaseDC((HWND)fHWND, dc); in onSwapBuffers() 131 WindowContext* NewGLForWin(HWND wnd, const DisplayParams& params) { in NewGLForWin()
|
D | WindowContextFactory_win.h | 21 WindowContext* NewVulkanForWin(HWND, const DisplayParams&); 23 WindowContext* NewGLForWin(HWND, const DisplayParams&); 25 WindowContext* NewRasterForWin(HWND, const DisplayParams&);
|
D | RasterWindowContext_win.cpp | 22 RasterWindowContext_win(HWND, const DisplayParams&); 33 HWND fWnd; 39 RasterWindowContext_win::RasterWindowContext_win(HWND wnd, const DisplayParams& params) in RasterWindowContext_win() 90 WindowContext* NewRasterForWin(HWND wnd, const DisplayParams& params) { in NewRasterForWin()
|
/external/lzma/CPP/7zip/UI/Explorer/ |
D | MyMessages.cpp | 14 void ShowErrorMessage(HWND window, LPCWSTR message) in ShowErrorMessage() 19 void ShowErrorMessageHwndRes(HWND window, UINT resID) in ShowErrorMessageHwndRes() 29 void ShowErrorMessageDWORD(HWND window, DWORD errorCode) in ShowErrorMessageDWORD() 34 void ShowLastErrorMessage(HWND window) in ShowLastErrorMessage()
|
D | MyMessages.h | 8 void ShowErrorMessage(HWND window, LPCWSTR message); 11 void ShowErrorMessageHwndRes(HWND window, UInt32 langID); 14 void ShowLastErrorMessage(HWND window = 0);
|
/external/webrtc/webrtc/base/ |
D | win32window.h | 29 HWND handle() const { return wnd_; } in handle() 31 bool Create(HWND parent, const wchar_t* title, DWORD style, DWORD exstyle, 46 static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, 49 HWND wnd_;
|
D | win32windowpicker_unittest.cc | 81 HWND visible_id = window_picker.visible_window()->handle(); in TEST() 82 HWND invisible_id = window_picker.invisible_window()->handle(); in TEST() 89 HWND visible_id = window_picker.visible_window()->handle(); in TEST() 90 HWND invisible_id = window_picker.invisible_window()->handle(); in TEST()
|
/external/libpng/contrib/visupng/ |
D | PngFile.h | 16 void PngFileInitialize (HWND hwnd) ; 17 BOOL PngFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 18 BOOL PngFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ;
|