HomeSort by relevance Sort by last modified time
    Searched full:wndclass (Results 1 - 25 of 33) sorted by null

1 2

  /external/lzma/CPP/Windows/
Window.cpp 17 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass)
20 return RegisterClassW(wndClass);
22 wndClassA.style = wndClass->style;
23 wndClassA.lpfnWndProc = wndClass->lpfnWndProc;
24 wndClassA.cbClsExtra = wndClass->cbClsExtra;
25 wndClassA.cbWndExtra = wndClass->cbWndExtra;
26 wndClassA.hInstance = wndClass->hInstance;
27 wndClassA.hIcon = wndClass->hIcon;
28 wndClassA.hCursor = wndClass->hCursor;
29 wndClassA.hbrBackground = wndClass->hbrBackground;
    [all...]
Window.h 31 inline ATOM MyRegisterClass(CONST WNDCLASS *wndClass)
32 { return ::RegisterClass(wndClass); }
35 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass);
  /external/deqp/framework/platform/win32/
tcuWin32Window.cpp 49 WNDCLASS wndClass;
50 memset(&wndClass, 0, sizeof(wndClass));
51 wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
52 wndClass.lpfnWndProc = windowProcCallback;
53 wndClass.cbClsExtra = 0;
54 wndClass.cbWndExtra = 0;
55 wndClass.hInstance = instance;
56 wndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION)
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_funcptr.py 56 class WNDCLASS(Structure):
67 wndclass = WNDCLASS()
68 wndclass.lpfnWndProc = WNDPROC(wndproc)
74 ## self.assertRaises(TypeError, setattr, wndclass,
79 # 'wndclass.lpfnWndProc' leaks 94 references. Why?
80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10)
83 f = wndclass.lpfnWndProc
85 del wndclass
  /external/python/cpython3/Lib/ctypes/test/
test_funcptr.py 56 class WNDCLASS(Structure):
67 wndclass = WNDCLASS()
68 wndclass.lpfnWndProc = WNDPROC(wndproc)
74 ## self.assertRaises(TypeError, setattr, wndclass,
79 # 'wndclass.lpfnWndProc' leaks 94 references. Why?
80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10)
83 f = wndclass.lpfnWndProc
85 del wndclass
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_funcptr.py 56 class WNDCLASS(Structure):
67 wndclass = WNDCLASS()
68 wndclass.lpfnWndProc = WNDPROC(wndproc)
74 ## self.assertRaises(TypeError, setattr, wndclass,
79 # 'wndclass.lpfnWndProc' leaks 94 references. Why?
80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10)
83 f = wndclass.lpfnWndProc
85 del wndclass
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_funcptr.py 56 class WNDCLASS(Structure):
67 wndclass = WNDCLASS()
68 wndclass.lpfnWndProc = WNDPROC(wndproc)
74 ## self.assertRaises(TypeError, setattr, wndclass,
79 # 'wndclass.lpfnWndProc' leaks 94 references. Why?
80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10)
83 f = wndclass.lpfnWndProc
85 del wndclass
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_funcptr.py 56 class WNDCLASS(Structure):
67 wndclass = WNDCLASS()
68 wndclass.lpfnWndProc = WNDPROC(wndproc)
74 ## self.assertRaises(TypeError, setattr, wndclass,
79 # 'wndclass.lpfnWndProc' leaks 94 references. Why?
80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10)
83 f = wndclass.lpfnWndProc
85 del wndclass
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_funcptr.py 56 class WNDCLASS(Structure):
67 wndclass = WNDCLASS()
68 wndclass.lpfnWndProc = WNDPROC(wndproc)
74 ## self.assertRaises(TypeError, setattr, wndclass,
79 # 'wndclass.lpfnWndProc' leaks 94 references. Why?
80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10)
83 f = wndclass.lpfnWndProc
85 del wndclass
  /external/icu/icu4c/source/samples/layout/
clayout.c 82 WNDCLASS wndclass; local
85 wndclass.style = CS_HREDRAW | CS_VREDRAW;
86 wndclass.lpfnWndProc = WndProc;
87 wndclass.cbClsExtra = 0;
88 wndclass.cbWndExtra = sizeof(LONG);
89 wndclass.hInstance = hInstance;
90 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
91 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
92 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH)
    [all...]
layout.cpp 81 WNDCLASS wndclass; local
84 wndclass.style = CS_HREDRAW | CS_VREDRAW;
85 wndclass.lpfnWndProc = WndProc;
86 wndclass.cbClsExtra = 0;
87 wndclass.cbWndExtra = sizeof(LONG);
88 wndclass.hInstance = hInstance;
89 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
90 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
91 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH)
    [all...]
  /external/swiftshader/tests/OGLSimpleCube/
OGLSimpleCube.cpp 182 WNDCLASS wndClass;
187 wndClass.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
188 wndClass.lpfnWndProc = WndProc;
189 wndClass.cbClsExtra = 0;
190 wndClass.cbWndExtra = 0;
191 wndClass.hInstance = hCurrentInst;
192 wndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
193 wndClass.hCursor = LoadCursor(NULL, IDC_ARROW);
194 wndClass.hbrBackground = (HBRUSH)BLACK_BRUSH
    [all...]
  /system/core/adb/client/
usb_windows.cpp 219 WNDCLASSEXW wndclass; local
220 memset(&wndclass, 0, sizeof(wndclass));
221 wndclass.cbSize = sizeof(wndclass);
222 wndclass.lpfnWndProc = _power_window_proc;
223 wndclass.hInstance = instance;
224 wndclass.lpszClassName = kPowerNotificationWindowClassName;
225 if (!RegisterClassExW(&wndclass)) {
  /external/libpng/contrib/visupng/
VisualPng.c 85 WNDCLASS wndclass; local
88 wndclass.style = CS_HREDRAW | CS_VREDRAW;
89 wndclass.lpfnWndProc = WndProc;
90 wndclass.cbClsExtra = 0;
91 wndclass.cbWndExtra = 0;
92 wndclass.hInstance = hInstance;
93 wndclass.hIcon = LoadIcon (hInstance, szIconName) ;
94 wndclass.hCursor = LoadCursor (NULL, IDC_ARROW);
95 wndclass.hbrBackground = NULL; /* (HBRUSH) GetStockObject (GRAY_BRUSH); *
    [all...]
  /external/lzma/CPP/Windows/Control/
Window2.cpp 18 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass);
53 WNDCLASS wc;
  /prebuilts/misc/windows/sdl2/test/
testnativew32.c 46 WNDCLASS wc;
  /external/libpng/contrib/gregbook/
rpng-win.c 490 WNDCLASSEX wndclass; local
546 memset(&wndclass, 0, sizeof(wndclass));
548 wndclass.cbSize = sizeof(wndclass);
549 wndclass.style = CS_HREDRAW | CS_VREDRAW;
550 wndclass.lpfnWndProc = rpng_win_wndproc;
551 wndclass.hInstance = hInst;
552 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
553 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW)
    [all...]
rpng2-win.c 701 WNDCLASSEX wndclass;
758 memset(&wndclass, 0, sizeof(wndclass));
760 wndclass.cbSize = sizeof(wndclass);
761 wndclass.style = CS_HREDRAW | CS_VREDRAW;
762 wndclass.lpfnWndProc = rpng2_win_wndproc;
763 wndclass.hInstance = global_hInst;
764 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
765 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW)
    [all...]
  /external/skia/tools/gpu/gl/win/
CreatePlatformGLTestContext_win.cpp 55 WNDCLASS wc;
  /external/skqp/tools/gpu/gl/win/
CreatePlatformGLTestContext_win.cpp 55 WNDCLASS wc;
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_pbuffer.c 169 WNDCLASS wc;
  /external/skia/src/utils/win/
SkWGL_win.cpp 190 WNDCLASS wc;
  /external/skia/tools/gpu/gl/angle/
GLTestContext_angle.cpp 136 WNDCLASS wc;
  /external/skqp/src/utils/win/
SkWGL_win.cpp 190 WNDCLASS wc;
  /external/skqp/tools/gpu/gl/angle/
GLTestContext_angle.cpp 136 WNDCLASS wc;

Completed in 1363 milliseconds

1 2