Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:wndClass
(Results
1 - 6
of
6
) sorted by relevance
/third_party/lzma/CPP/Windows/
H
A
D
Window.cpp
17
ATOM MyRegisterClass(CONST WNDCLASSW *
wndClass
)
in MyRegisterClass()
argument
20
return RegisterClassW(
wndClass
);
in MyRegisterClass()
22
wndClassA.style =
wndClass
->style;
in MyRegisterClass()
23
wndClassA.lpfnWndProc =
wndClass
->lpfnWndProc;
in MyRegisterClass()
24
wndClassA.cbClsExtra =
wndClass
->cbClsExtra;
in MyRegisterClass()
25
wndClassA.cbWndExtra =
wndClass
->cbWndExtra;
in MyRegisterClass()
26
wndClassA.hInstance =
wndClass
->hInstance;
in MyRegisterClass()
27
wndClassA.hIcon =
wndClass
->hIcon;
in MyRegisterClass()
28
wndClassA.hCursor =
wndClass
->hCursor;
in MyRegisterClass()
29
wndClassA.hbrBackground =
wndClass
in MyRegisterClass()
[all...]
H
A
D
Window.h
108
inline ATOM MyRegisterClass(CONST WNDCLASS *
wndClass
)
in MyRegisterClass()
argument
109
{ return ::RegisterClass(
wndClass
); }
in MyRegisterClass()
112
ATOM MyRegisterClass(CONST WNDCLASSW *
wndClass
);
/third_party/vk-gl-cts/framework/platform/win32/
H
A
D
tcuWin32Window.cpp
49
WNDCLASS
wndClass
;
in Window()
local
50
memset(&
wndClass
, 0, sizeof(
wndClass
));
in Window()
51
wndClass
.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
in Window()
52
wndClass
.lpfnWndProc = windowProcCallback;
in Window()
53
wndClass
.cbClsExtra = 0;
in Window()
54
wndClass
.cbWndExtra = 0;
in Window()
55
wndClass
.hInstance = instance;
in Window()
56
wndClass
.hIcon = LoadIcon(NULL, IDI_APPLICATION);
in Window()
57
wndClass
in Window()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/win32/
H
A
D
DisplayVkWin32.cpp
71
WNDCLASSA
wndClass
;
in initialize()
local
72
if (!GetClassInfoA(hinstance, className.c_str(), &
wndClass
))
in initialize()
/third_party/skia/third_party/externals/d3d12allocator/src/
H
A
D
D3D12Sample.cpp
1457
WNDCLASSEX
wndClass
;
in main()
local
1458
ZeroMemory(&
wndClass
, sizeof(
wndClass
));
in main()
1459
wndClass
.cbSize = sizeof(
wndClass
);
in main()
1460
wndClass
.style = CS_VREDRAW | CS_HREDRAW | CS_DBLCLKS;
in main()
1461
wndClass
.hbrBackground = NULL;
in main()
1462
wndClass
.hCursor = LoadCursor(NULL, IDC_ARROW);
in main()
1463
wndClass
.hIcon = LoadIcon(NULL, IDI_APPLICATION);
in main()
1464
wndClass
in main()
[all...]
/third_party/lzma/CPP/Windows/Control/
H
A
D
Window2.cpp
18
ATOM MyRegisterClass(CONST WNDCLASSW *
wndClass
);
Completed in 5 milliseconds