Home
last modified time | relevance | path

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

/external/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,
/external/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,
/external/armnn/samples/common/src/CVUtils/
DCvWindowOutput.cpp11 void CvWindowOutput::Init(const std::string& windowName) in Init() argument
13 m_windowName = windowName; in Init()
/external/armnn/samples/common/include/CVUtils/
DCvWindowOutput.hpp29 void Init(const std::string& windowName);
/external/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
/external/angle/src/tests/test_utils/
DANGLETest.cpp519 std::string windowName = windowNameStream.str(); in initOSWindow() local
535 if (!mFixture->osWindow->initialize(windowName.c_str(), 128, 128)) in initOSWindow()
/external/angle/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()