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

  /external/chromium_org/content/test/plugin/
plugin_create_instance_in_paint.cc 26 WNDCLASSEX wcex; local
27 wcex.cbSize = sizeof(WNDCLASSEX);
28 wcex.style = CS_DBLCLKS;
29 wcex.lpfnWndProc =
31 wcex.cbClsExtra = 0;
32 wcex.cbWndExtra = 0;
33 wcex.hInstance = GetModuleHandle(NULL);
34 wcex.hIcon = 0;
35 wcex.hCursor = 0;
36 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW+1)
    [all...]
plugin_windowed_test.cc 44 WNDCLASSEX wcex; local
45 wcex.cbSize = sizeof(WNDCLASSEX);
46 wcex.style = CS_DBLCLKS;
47 wcex.lpfnWndProc = &NPAPIClient::WindowedPluginTest::WindowProc;
48 wcex.cbClsExtra = 0;
49 wcex.cbWndExtra = 0;
50 wcex.hInstance = GetModuleHandle(NULL);
51 wcex.hIcon = 0;
52 wcex.hCursor = 0;
53 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW+1)
    [all...]
  /external/chromium_org/win8/metro_driver/
metro_driver_win7.cc 63 WNDCLASSEXW wcex; local
64 wcex.cbSize = sizeof(wcex);
65 wcex.style = CS_HREDRAW | CS_VREDRAW;
66 wcex.lpfnWndProc = WndProc;
67 wcex.cbClsExtra = 0;
68 wcex.cbWndExtra = 0;
69 wcex.hInstance = hInst;
70 wcex.hIcon = 0;
71 wcex.hCursor = LoadCursor(NULL, IDC_ARROW)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp 63 WNDCLASSEXA wcex; local
65 wcex.cbSize = sizeof(WNDCLASSEX);
67 wcex.style = CS_HREDRAW | CS_VREDRAW;
68 wcex.lpfnWndProc = WndProc;
69 wcex.cbClsExtra = 0;
70 wcex.cbWndExtra = 0;
71 wcex.hInstance = hInstance;
72 wcex.hIcon = 0;
73 wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
74 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11winmain.cpp 63 WNDCLASSEXA wcex; local
65 wcex.cbSize = sizeof(WNDCLASSEX);
67 wcex.style = CS_HREDRAW | CS_VREDRAW;
68 wcex.lpfnWndProc = WndProc;
69 wcex.cbClsExtra = 0;
70 wcex.cbWndExtra = 0;
71 wcex.hInstance = hInstance;
72 wcex.hIcon = 0;
73 wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
74 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
    [all...]
  /external/chromium_org/third_party/skia/src/views/win/
skia_win.cpp 76 WNDCLASSEX wcex; local
78 wcex.cbSize = sizeof(WNDCLASSEX);
80 wcex.style = CS_HREDRAW | CS_VREDRAW;
81 wcex.lpfnWndProc = WndProc;
82 wcex.cbClsExtra = 0;
83 wcex.cbWndExtra = 0;
84 wcex.hInstance = hInstance;
85 wcex.hIcon = NULL;
86 wcex.hCursor = NULL;
87 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp 63 WNDCLASSEXA wcex; local
65 wcex.cbSize = sizeof(WNDCLASSEX);
67 wcex.style = CS_HREDRAW | CS_VREDRAW;
68 wcex.lpfnWndProc = WndProc;
69 wcex.cbClsExtra = 0;
70 wcex.cbWndExtra = 0;
71 wcex.hInstance = hInstance;
72 wcex.hIcon = 0;
73 wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
74 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11winmain.cpp 63 WNDCLASSEXA wcex; local
65 wcex.cbSize = sizeof(WNDCLASSEX);
67 wcex.style = CS_HREDRAW | CS_VREDRAW;
68 wcex.lpfnWndProc = WndProc;
69 wcex.cbClsExtra = 0;
70 wcex.cbWndExtra = 0;
71 wcex.hInstance = hInstance;
72 wcex.hIcon = 0;
73 wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
74 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
    [all...]
  /external/skia/src/views/win/
skia_win.cpp 76 WNDCLASSEX wcex; local
78 wcex.cbSize = sizeof(WNDCLASSEX);
80 wcex.style = CS_HREDRAW | CS_VREDRAW;
81 wcex.lpfnWndProc = WndProc;
82 wcex.cbClsExtra = 0;
83 wcex.cbWndExtra = 0;
84 wcex.hInstance = hInstance;
85 wcex.hIcon = NULL;
86 wcex.hCursor = NULL;
87 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
win32window.cc 58 WNDCLASSEX wcex; local
59 memset(&wcex, 0, sizeof(wcex));
60 wcex.cbSize = sizeof(wcex);
61 wcex.hInstance = instance_;
62 wcex.lpfnWndProc = &Win32Window::WndProc;
63 wcex.lpszClassName = kWindowBaseClassName;
64 window_class_ = ::RegisterClassEx(&wcex);
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32window.cc 66 WNDCLASSEX wcex; local
67 memset(&wcex, 0, sizeof(wcex));
68 wcex.cbSize = sizeof(wcex);
69 wcex.hInstance = instance_;
70 wcex.lpfnWndProc = &Win32Window::WndProc;
71 wcex.lpszClassName = kWindowBaseClassName;
72 window_class_ = ::RegisterClassEx(&wcex);
  /external/chromium_org/chrome_frame/
chrome_frame_helper_main.cc 147 WNDCLASSEX wcex = {0}; local
148 wcex.cbSize = sizeof(WNDCLASSEX);
149 wcex.lpfnWndProc = ChromeFrameHelperWndProc;
150 wcex.hInstance = GetModuleHandle(NULL);
151 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW+1);
152 wcex.lpszClassName = kChromeFrameHelperWindowClassName;
153 RegisterClassEx(&wcex);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_win.cc 424 WNDCLASSEX wcex; local
425 wcex.cbSize = sizeof(WNDCLASSEX);
426 wcex.style = CS_DBLCLKS;
427 wcex.lpfnWndProc = base::win::WrappedWindowProc<PluginWrapperWindowProc>;
428 wcex.cbClsExtra = 0;
429 wcex.cbWndExtra = 0;
430 wcex.hInstance = GetModuleHandle(NULL);
431 wcex.hIcon = 0;
432 wcex.hCursor = 0;
433 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW+1)
1508 WNDCLASSEX wcex; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.cc 426 WNDCLASSEX wcex = { sizeof(WNDCLASSEX) };
427 wcex.style = CS_DBLCLKS;
428 wcex.hInstance = GetModuleHandle(NULL);
429 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1);
430 wcex.hCursor = ::LoadCursor(NULL, IDC_ARROW);
431 wcex.lpfnWndProc = &WndProc;
432 wcex.lpszClassName = kClassName;
433 wnd_class_ = ::RegisterClassEx(&wcex);
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_win.cc 858 WNDCLASSEX wcex; local
859 wcex.cbSize = sizeof(WNDCLASSEX);
860 wcex.style = CS_DBLCLKS;
861 wcex.lpfnWndProc = WrapperWindowProc;
862 wcex.cbClsExtra = 0;
863 wcex.cbWndExtra = 0;
864 wcex.hInstance = GetModuleHandle(NULL);
865 wcex.hIcon = 0;
866 wcex.hCursor = 0;
872 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW+1)
    [all...]

Completed in 8604 milliseconds