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

  /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 30 inline ATOM MyRegisterClass(CONST WNDCLASS *wndClass)
31 { return ::RegisterClass(wndClass); }
34 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...]
  /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 76 WNDCLASS wndclass; local
79 wndclass.style = CS_HREDRAW | CS_VREDRAW;
80 wndclass.lpfnWndProc = WndProc;
81 wndclass.cbClsExtra = 0;
82 wndclass.cbWndExtra = sizeof(LONG);
83 wndclass.hInstance = hInstance;
84 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
85 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
86 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH)
    [all...]
layout.cpp 75 WNDCLASS wndclass; local
78 wndclass.style = CS_HREDRAW | CS_VREDRAW;
79 wndclass.lpfnWndProc = WndProc;
80 wndclass.cbClsExtra = 0;
81 wndclass.cbWndExtra = sizeof(LONG);
82 wndclass.hInstance = hInstance;
83 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
84 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
85 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH)
    [all...]
  /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 489 WNDCLASSEX wndclass; local
539 memset(&wndclass, 0, sizeof(wndclass));
541 wndclass.cbSize = sizeof(wndclass);
542 wndclass.style = CS_HREDRAW | CS_VREDRAW;
543 wndclass.lpfnWndProc = rpng_win_wndproc;
544 wndclass.hInstance = hInst;
545 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
546 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW)
    [all...]
rpng2-win.c 695 WNDCLASSEX wndclass; local
752 memset(&wndclass, 0, sizeof(wndclass));
754 wndclass.cbSize = sizeof(wndclass);
755 wndclass.style = CS_HREDRAW | CS_VREDRAW;
756 wndclass.lpfnWndProc = rpng2_win_wndproc;
757 wndclass.hInstance = global_hInst;
758 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
759 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW)
    [all...]
  /system/core/adb/
usb_windows.cpp 227 WNDCLASSEXW wndclass; local
228 memset(&wndclass, 0, sizeof(wndclass));
229 wndclass.cbSize = sizeof(wndclass);
230 wndclass.lpfnWndProc = _power_window_proc;
231 wndclass.hInstance = instance;
232 wndclass.lpszClassName = kPowerNotificationWindowClassName;
233 if (!RegisterClassExW(&wndclass)) {
  /external/skia/src/gpu/gl/win/
SkCreatePlatformGLContext_win.cpp 49 WNDCLASS wc;
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-win32.c 210 WNDCLASS wc;
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_pbuffer.c 134 WNDCLASS wc;
  /external/skia/src/utils/win/
SkWGL_win.cpp 185 WNDCLASS wc;
  /external/opencv3/modules/highgui/src/
window_w32.cpp 238 WNDCLASS wndc;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winuser.h 818 __MINGW_TYPEDEF_AW(WNDCLASS)
    [all...]
  /development/host/windows/prebuilt/usb/
AdbWinApi.pdb     [all...]
AdbWinUsbApi.pdb     [all...]
  /external/eclipse-basebuilder/src/
eclipse-sourceBuild-srcIncluded-3.6.2.zip 

Completed in 2544 milliseconds