Home
last modified time | relevance | path

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

/third_party/lzma/CPP/Windows/
DWindow.cpp50 LPCWSTR windowName, DWORD style, in Create() argument
57 _window = ::CreateWindowW(className, windowName, in Create()
62 return Create(GetSystemString(className), GetSystemString(windowName), in Create()
68 LPCWSTR windowName, DWORD style, in CreateEx() argument
75 _window = ::CreateWindowExW(exStyle, className, windowName, in CreateEx()
91 if (IS_INTRESOURCE(windowName)) in CreateEx()
92 windowNameP = (LPCSTR)windowName; in CreateEx()
95 windowNameA = GetSystemString(windowName); in CreateEx()
DWindow.h86 LPCTSTR windowName, DWORD style, in CreateEx() argument
91 _window = ::CreateWindowEx(exStyle, className, windowName, in CreateEx()
98 LPCTSTR windowName, DWORD style, in Create() argument
103 _window = ::CreateWindow(className, windowName, in Create()
111 LPCWSTR windowName, DWORD style,
116 LPCWSTR windowName, DWORD style,
/third_party/lzma/CPP/Windows/Control/
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,
/third_party/cef/include/internal/
Dcef_win.h118 void SetAsPopup(CefWindowHandle parent, const CefString& windowName) { in SetAsPopup() argument
127 cef_string_copy(windowName.c_str(), windowName.length(), &window_name); in SetAsPopup()
/third_party/cef/libcef/browser/native/
Dbrowser_platform_delegate_native_win.cc174 std::wstring windowName(CefString(&window_info_.window_name)); in CreateHostWindow() local
177 CreateWindowEx(window_info_.ex_style, GetWndClass(), windowName.c_str(), in CreateHostWindow()
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Drpng-x.c447 XTextProperty windowName, *pWindowName = &windowName; in rpng_x_create_window() local
Drpng2-x.c848 XTextProperty windowName, *pWindowName = &windowName; in rpng2_x_create_window() local
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
DANGLETest.cpp516 std::string windowName = windowNameStream.str(); in initOSWindow() local
528 if (!mFixture->osWindow->initialize(windowName.c_str(), 128, 128)) in initOSWindow()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DRenderer9.cpp297 static const TCHAR windowName[] = TEXT("AngleHiddenWindow"); in initialize() local
303 CreateWindowEx(WS_EX_NOACTIVATE, className, windowName, WS_DISABLED | WS_POPUP, 0, 0, 1, in initialize()