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

  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_win.cc 152 WNDCLASSEX wcx; local
153 wcx.hInstance = hinst;
154 wcx.lpszClassName = className;
155 wcx.lpfnWndProc = (WNDPROC) ViEAutoTestWinProc;
156 wcx.style = CS_DBLCLKS;
157 wcx.hIcon = LoadIcon(NULL, IDI_APPLICATION);
158 wcx.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
159 wcx.hCursor = LoadCursor(NULL, IDC_ARROW);
160 wcx.lpszMenuName = NULL;
161 wcx.cbSize = sizeof(WNDCLASSEX)
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 179 WNDCLASSEX wcx; local
180 wcx.cbSize = sizeof(wcx); // size of structure
181 wcx.style = CS_OWNDC |CS_HREDRAW |CS_VREDRAW; // redraw if size changes
182 wcx.lpfnWndProc = dummyWndProc; // points to window procedure
183 wcx.cbClsExtra = 0; // no extra class memory
184 wcx.cbWndExtra = sizeof(void*); // save extra window memory, to store VasWindow instance
185 wcx.hInstance = NULL; // handle to instance
186 wcx.hIcon = NULL; // predefined app. icon
187 wcx.hCursor = NULL
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/test/testAPI/
testAPI.cc 113 WNDCLASSEX wcx; local
114 wcx.hInstance = hinst;
115 wcx.lpszClassName = TEXT("VideoRenderTest");
116 wcx.lpfnWndProc = (WNDPROC)WebRtcWinProc;
117 wcx.style = CS_DBLCLKS;
118 wcx.hIcon = LoadIcon (NULL, IDI_APPLICATION);
119 wcx.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
120 wcx.hCursor = LoadCursor (NULL, IDC_ARROW);
121 wcx.lpszMenuName = NULL;
122 wcx.cbSize = sizeof (WNDCLASSEX)
    [all...]
  /external/chromium_org/components/crash/tools/
crash_service.cc 89 WNDCLASSEXW wcx = {0}; local
90 wcx.cbSize = sizeof(wcx);
91 wcx.style = CS_HREDRAW | CS_VREDRAW;
92 wcx.lpfnWndProc = CrashSvcWndProc;
93 wcx.hInstance = instance;
94 wcx.lpszClassName = L"crash_svc_class";
95 ATOM atom = ::RegisterClassExW(&wcx);
100 HWND window = CreateWindowExW(0, wcx.lpszClassName, L"crash service", style,

Completed in 1249 milliseconds