HomeSort by relevance Sort by last modified time
    Searched defs:wcex (Results 1 - 6 of 6) sorted by null

  /external/webkit/JavaScriptCore/wtf/win/
MainThreadWin.cpp 61 WNDCLASS wcex; local
62 memset(&wcex, 0, sizeof(WNDCLASS));
64 WNDCLASSEX wcex; local
65 memset(&wcex, 0, sizeof(WNDCLASSEX));
66 wcex.cbSize = sizeof(WNDCLASSEX);
68 wcex.lpfnWndProc = ThreadingWindowWndProc;
69 wcex.lpszClassName = kThreadingWindowClassName;
71 RegisterClass(&wcex);
73 RegisterClassEx(&wcex);
  /external/webkit/WebCore/platform/win/
PasteboardWin.cpp 88 WNDCLASSEX wcex = {0}; local
89 wcex.cbSize = sizeof(WNDCLASSEX);
90 wcex.lpfnWndProc = PasteboardOwnerWndProc;
91 wcex.hInstance = Page::instanceHandle();
92 wcex.lpszClassName = L"PasteboardOwnerWindowClass";
93 ::RegisterClassEx(&wcex);
  /external/webkit/WebKitTools/WinLauncher/
WinLauncher.cpp 261 WNDCLASSEX wcex; local
263 wcex.cbSize = sizeof(WNDCLASSEX);
265 wcex.style = CS_HREDRAW | CS_VREDRAW;
266 wcex.lpfnWndProc = WndProc;
267 wcex.cbClsExtra = 0;
268 wcex.cbWndExtra = 0;
269 wcex.hInstance = hInstance;
270 wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_WINLAUNCHER));
271 wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
272 wcex.hbrBackground = 0
    [all...]
  /external/webkit/WebCore/plugins/win/
PluginViewWin.cpp 298 WNDCLASS wcex = { 0 }; local
300 WNDCLASSEX wcex; local
301 wcex.cbSize = sizeof(WNDCLASSEX);
302 wcex.hIconSm = 0;
305 wcex.style = CS_DBLCLKS;
307 wcex.style |= CS_PARENTDC;
309 wcex.lpfnWndProc = DefWindowProc;
310 wcex.cbClsExtra = 0;
311 wcex.cbWndExtra = 0;
312 wcex.hInstance = Page::instanceHandle()
    [all...]
  /external/webkit/WebKit/win/
FullscreenVideoController.cpp 328 WNDCLASSEX wcex; local
330 wcex.cbSize = sizeof(WNDCLASSEX);
332 wcex.style = CS_HREDRAW | CS_VREDRAW;
333 wcex.lpfnWndProc = hudWndProc;
334 wcex.cbClsExtra = 0;
335 wcex.cbWndExtra = 4;
336 wcex.hInstance = gInstance;
337 wcex.hIcon = 0;
338 wcex.hCursor = LoadCursor(0, IDC_ARROW);
339 wcex.hbrBackground = 0
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
DumpRenderTree.cpp 308 WNDCLASSEX wcex; local
310 wcex.cbSize = sizeof(WNDCLASSEX);
312 wcex.style = CS_HREDRAW | CS_VREDRAW;
313 wcex.lpfnWndProc = DumpRenderTreeWndProc;
314 wcex.cbClsExtra = 0;
315 wcex.cbWndExtra = 0;
316 wcex.hInstance = GetModuleHandle(0);
317 wcex.hIcon = 0;
318 wcex.hCursor = LoadCursor(0, IDC_ARROW);
319 wcex.hbrBackground = 0
    [all...]

Completed in 778 milliseconds