HomeSort by relevance Sort by last modified time
    Searched refs:wcex (Results 1 - 14 of 14) 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/graphics/win/
QTMovieWinTimer.cpp 67 WNDCLASSEX wcex;
68 memset(&wcex, 0, sizeof(WNDCLASSEX));
69 wcex.cbSize = sizeof(WNDCLASSEX);
70 wcex.lpfnWndProc = TimerWindowWndProc;
71 wcex.hInstance = instanceHandle;
72 wcex.lpszClassName = kTimerWindowClassName;
73 RegisterClassEx(&wcex);
  /external/webkit/WebCore/platform/wince/
SharedTimerWince.cpp 81 WNDCLASS wcex = {0};
82 wcex.lpfnWndProc = TimerWindowWndProc;
83 wcex.hInstance = Page::instanceHandle();
84 wcex.lpszClassName = kTimerWindowClassName;
85 RegisterClass(&wcex);
  /external/webkit/WebKit/win/
WebNodeHighlight.cpp 193 WNDCLASSEX wcex;
195 wcex.cbSize = sizeof(WNDCLASSEX);
197 wcex.style = 0;
198 wcex.lpfnWndProc = OverlayWndProc;
199 wcex.cbClsExtra = 0;
200 wcex.cbWndExtra = 0;
201 wcex.hInstance = 0;
202 wcex.hIcon = 0;
203 wcex.hCursor = LoadCursor(0, IDC_ARROW);
204 wcex.hbrBackground = 0
    [all...]
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...]
WebView.cpp     [all...]
  /external/webkit/WebCore/platform/win/
SharedTimerWin.cpp 124 WNDCLASSEX wcex;
125 memset(&wcex, 0, sizeof(WNDCLASSEX));
126 wcex.cbSize = sizeof(WNDCLASSEX);
127 wcex.lpfnWndProc = TimerWindowWndProc;
128 wcex.hInstance = Page::instanceHandle();
129 wcex.lpszClassName = kTimerWindowClassName;
130 RegisterClassEx(&wcex);
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);
PopupMenuWin.cpp 715 WNDCLASS wcex;
717 WNDCLASSEX wcex;
718 wcex.cbSize = sizeof(WNDCLASSEX);
719 wcex.hIconSm = 0;
720 wcex.style = CS_DROPSHADOW;
723 wcex.lpfnWndProc = PopupMenuWndProc;
724 wcex.cbClsExtra = 0;
725 wcex.cbWndExtra = sizeof(PopupMenu*); // For the PopupMenu pointer
726 wcex.hInstance = Page::instanceHandle();
727 wcex.hIcon = 0
    [all...]
  /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/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 491 WNDCLASSEX wcex;
493 wcex.cbSize = sizeof(WNDCLASSEX);
495 wcex.style = 0;
496 wcex.lpfnWndProc = WebInspectorWndProc;
497 wcex.cbClsExtra = 0;
498 wcex.cbWndExtra = 0;
499 wcex.hInstance = 0;
500 wcex.hIcon = 0;
501 wcex.hCursor = LoadCursor(0, IDC_ARROW);
502 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/WebCore/platform/network/win/
ResourceHandleWin.cpp 112 WNDCLASSEX wcex;
113 memset(&wcex, 0, sizeof(WNDCLASSEX));
114 wcex.cbSize = sizeof(WNDCLASSEX);
115 wcex.lpfnWndProc = ResourceHandleWndProc;
116 wcex.hInstance = Page::instanceHandle();
117 wcex.lpszClassName = kResourceHandleWindowClassName;
118 RegisterClassEx(&wcex);
  /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 556 milliseconds