Home
last modified time | relevance | path

Searched refs:exStyle (Results 1 – 10 of 10) sorted by relevance

/external/lzma/CPP/Windows/Control/
DListView.h18 bool CreateEx(DWORD exStyle, DWORD style,
100 …void SetExtendedListViewStyle(DWORD exStyle) { ListView_SetExtendedListViewStyle(_window, exStyle)… in SetExtendedListViewStyle() argument
101 …xtendedListViewStyle(DWORD exMask, DWORD exStyle) { ListView_SetExtendedListViewStyleEx(_window, e… in SetExtendedListViewStyle() argument
DWindow2.cpp49 bool CWindow2::CreateEx(DWORD exStyle, LPCTSTR className, LPCTSTR windowName, in CreateEx() argument
70 return CWindow::CreateEx(exStyle, className, windowName, style, in CreateEx()
76 bool CWindow2::CreateEx(DWORD exStyle, LPCWSTR className, LPCWSTR windowName, in CreateEx() argument
117 return CWindow::CreateEx(exStyle, className, windowName, style, in CreateEx()
DWindow2.h18 bool CreateEx(DWORD exStyle, LPCTSTR className, LPCTSTR windowName,
23 bool CreateEx(DWORD exStyle, LPCWSTR className, LPCWSTR windowName,
DComboBox.h56 …ORD SetExtendedStyle(DWORD exMask, DWORD exStyle) { return (DWORD)SendMsg(CBEM_SETEXTENDEDSTYLE, e… in SetExtendedStyle() argument
DListView.cpp14 bool CListView::CreateEx(DWORD exStyle, DWORD style, in CreateEx() argument
19 return CWindow::CreateEx(exStyle, WC_LISTVIEW, TEXT(""), style, x, y, width, in CreateEx()
/external/lzma/CPP/Windows/
DWindow.cpp67 bool CWindow::CreateEx(DWORD exStyle, LPCWSTR className, in CreateEx() argument
75 _window = ::CreateWindowExW(exStyle, className, windowName, in CreateEx()
98 return CreateEx(exStyle, classNameP, windowNameP, in CreateEx()
DWindow.h85 bool CreateEx(DWORD exStyle, LPCTSTR className, in CreateEx() argument
91 _window = ::CreateWindowEx(exStyle, className, windowName, in CreateEx()
115 bool CreateEx(DWORD exStyle, LPCWSTR className,
/external/skqp/src/utils/win/
DSkWGL_win.cpp207 DWORD style, exStyle; in create_dummy_window() local
208 exStyle = WS_EX_CLIENTEDGE; in create_dummy_window()
211 AdjustWindowRectEx(&windowRect, style, false, exStyle); in create_dummy_window()
212 if(!(dummy = CreateWindowEx(exStyle, in create_dummy_window()
/external/skia/src/utils/win/
DSkWGL_win.cpp205 DWORD style, exStyle; in create_dummy_window() local
206 exStyle = WS_EX_CLIENTEDGE; in create_dummy_window()
209 AdjustWindowRectEx(&windowRect, style, false, exStyle); in create_dummy_window()
210 if(!(dummy = CreateWindowEx(exStyle, in create_dummy_window()
/external/angle/third_party/vulkan_memory_allocator/src/
DVulkanSample.cpp2055 const DWORD exStyle = 0; in main() local
2058 AdjustWindowRectEx(&rect, style, FALSE, exStyle); in main()
2061 exStyle, WINDOW_CLASS_NAME, APP_TITLE_W, style, in main()