HomeSort by relevance Sort by last modified time
    Searched defs:hwnd (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium_org/base/win/
message_window_unittest.cc 47 EXPECT_EQ(SendMessage(window.hwnd(), WM_USER, 100, 0), 100);
56 HWND hwnd = win::MessageWindow::FindWindow(name); local
57 EXPECT_TRUE(hwnd != NULL);
58 EXPECT_EQ(SendMessage(hwnd, WM_USER, 200, 0), 200);
message_window.h 45 HWND hwnd() const { return window_; } function in class:base::win::MessageWindow
49 static HWND FindWindow(const string16& window_name);
60 static LRESULT CALLBACK WindowProc(HWND hwnd, UINT message, WPARAM wparam,
67 HWND window_;
  /external/chromium_org/chrome/test/base/
interactive_test_utils_win.cc 29 HWND hwnd = window->GetHost()->GetAcceleratedWidget(); local
30 ::ShowWindow(hwnd, SW_HIDE);
39 HWND hwnd = window->GetHost()->GetAcceleratedWidget(); local
41 ::ShowWindow(hwnd, SW_SHOW);
43 if (GetForegroundWindow() != hwnd) {
45 ui::ForegroundHelper::SetForeground(hwnd);
51 HWND foreground_window = GetForegroundWindow();
52 if (foreground_window == hwnd)
    [all...]
  /external/chromium_org/ui/aura/
window_tree_host_win.h 45 gfx::AcceleratedWidget hwnd() const { return widget_; } function in class:aura::WindowTreeHostWin
  /external/chromium_org/ash/test/
test_metro_viewer_process_host.cc 50 HWND hwnd = reinterpret_cast<HWND>(target_surface); local
52 aura::RemoteWindowTreeHostWin::Instance()->SetRemoteWindowHandle(hwnd);
  /external/chromium_org/chrome/browser/metro_viewer/
chrome_metro_viewer_process_host_aurawin.cc 126 HWND hwnd = reinterpret_cast<HWND>(target_surface); local
129 chrome::OpenAsh(hwnd);
131 DCHECK_EQ(hwnd, aura::RemoteWindowTreeHostWin::Instance()->remote_window());
  /external/chromium_org/content/browser/renderer_host/
legacy_render_widget_host_win.h 27 // to be in its own HWND with class name Chrome_RenderWidgetHostHWND.
28 // With Aura there is one main HWND which comprises the whole browser window
29 // or the whole desktop. So, we need a fake HWND with the window class as
42 // This class implements a child HWND with the same size as the content area,
44 // BrowserAccessibilityManager tree. This HWND is hooked up as the parent of
47 // HWND instead of the DesktopWindowTreeHostWin.
62 static LegacyRenderWidgetHostHWND* Create(HWND parent);
64 // Destroys the HWND managed by this class.
87 HWND hwnd() { return m_hWnd; function in class:content::LegacyRenderWidgetHostHWND
    [all...]
  /external/chromium_org/gpu/gles2_conform_support/native/
egl_native_win.cc 18 LRESULT CALLBACK WindowProc(HWND hwnd, UINT msg,
23 ::DestroyWindow(hwnd);
34 result = ::DefWindowProc(hwnd, msg, w_param, l_param);
83 HWND hwnd = CreateWindow( local
95 if (hwnd == NULL)
98 ShowWindow(hwnd, SW_SHOWNORMAL);
99 *pNativeWindow = hwnd;
  /external/chromium_org/ui/views/win/
hwnd_util_aurawin.cc 13 HWND HWNDForView(const View* view) {
17 HWND HWNDForWidget(const Widget* widget) {
21 HWND HWNDForNativeView(const gfx::NativeView view) {
26 HWND HWNDForNativeWindow(const gfx::NativeWindow window) {
36 HWND hwnd = host->GetAcceleratedWidget(); local
38 DWORD style = ::GetWindowLong(hwnd, GWL_STYLE);
39 DWORD ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE);
  /external/openssl/apps/
winrand.c 66 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
73 HWND hwnd; local
99 hwnd = CreateWindow(appname, OPENSSL_VERSION_TEXT,
103 ShowWindow(hwnd, iCmdShow);
104 UpdateWindow(hwnd);
116 LRESULT CALLBACK WndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
126 hdc = BeginPaint(hwnd, &ps);
127 GetClientRect(hwnd, &rect)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/extension_action/
browser_action_interactive_test.cc 322 // Test that forcibly closing the browser and popup HWND does not cause a crash.
333 const HWND hwnd = views::HWNDForNativeView(view); local
334 EXPECT_EQ(hwnd,
336 EXPECT_EQ(TRUE, ::IsWindow(hwnd));
344 // Forcibly closing the browser HWND should not cause a crash.
345 EXPECT_EQ(TRUE, ::CloseWindow(hwnd));
346 EXPECT_EQ(TRUE, ::DestroyWindow(hwnd));
347 EXPECT_EQ(FALSE, ::IsWindow(hwnd));
  /external/chromium_org/chrome/browser/ui/views/accessibility/
browser_views_accessibility_browsertest.cc 123 HWND hwnd = browser_window->GetNativeWindow(); local
124 ASSERT_TRUE(NULL != hwnd);
128 HRESULT hr = ::AccessibleObjectFromWindow(hwnd, OBJID_WINDOW, IID_IAccessible,
  /external/chromium_org/chrome/browser/ui/views/location_bar/
star_view_browsertest.cc 80 BOOL CALLBACK EnumerateChildren(HWND hwnd, LPARAM l_param) {
81 HWND* child = reinterpret_cast<HWND*>(l_param);
82 *child = hwnd;
116 HWND hwnd = tab->GetNativeView()->GetHost()->GetAcceleratedWidget(); local
117 HWND child = NULL;
118 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
  /external/chromium_org/ui/base/win/
shell.cc 64 bool PreventWindowFromPinning(HWND hwnd) {
72 hwnd, __uuidof(*pps), reinterpret_cast<void**>(pps.Receive()));
86 HWND hwnd) {
94 hwnd, __uuidof(*pps), reinterpret_cast<void**>(pps.Receive()));
114 void SetAppIdForWindow(const base::string16& app_id, HWND hwnd) {
119 hwnd);
122 void SetAppIconForWindow(const base::string16& app_icon, HWND hwnd)
127 hwnd); local
137 hwnd); local
    [all...]
  /external/chromium_org/ui/gfx/win/
window_impl.h 23 virtual BOOL ProcessWindowMessage(HWND window,
35 // destroying a HWND. This class also hosts the windows procedure used by all
50 void Init(HWND parent, const gfx::Rect& bounds);
55 // Returns the HWND associated with this Window.
56 HWND hwnd() const { return hwnd_; } function in class:gfx::WindowImpl
80 // this object is properly disassociated from the HWND during destruction,
89 static LRESULT CALLBACK WndProc(HWND window,
94 // Gets the window class atom to use when creating the corresponding HWND.
110 // Our hwnd
    [all...]
  /external/chromium_org/chrome/browser/apps/
app_window_interactive_uitest.cc 372 // Get the bounds from the HWND.
373 HWND hwnd = views::HWNDForNativeWindow(window->GetNativeWindow()); local
375 ::GetWindowRect(hwnd, &rect);
384 aura::WindowTreeHost::GetForAcceleratedWidget(hwnd)));
  /external/chromium_org/chrome/browser/
chrome_plugin_interactive_test.cc 43 BOOL CALLBACK EnumerateChildren(HWND hwnd, LPARAM l_param) {
44 HWND* child = reinterpret_cast<HWND*>(l_param);
45 *child = hwnd;
94 HWND child = NULL;
95 HWND hwnd = tab->GetNativeView()->GetHost()->GetAcceleratedWidget(); local
96 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
127 HWND hwnd = tab->GetNativeView()->GetHost()->GetAcceleratedWidget() local
196 HWND hwnd = tab->GetNativeView()->GetHost()->GetAcceleratedWidget(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/apps/
chrome_native_app_window_views_win.cc 52 HWND ChromeNativeAppWindowViewsWin::GetNativeAppWindowHWND() const {
71 HWND hwnd = GetNativeAppWindowHWND(); local
72 int current_style = ::GetWindowLong(hwnd, GWL_STYLE);
73 ::SetWindowLong(hwnd, GWL_STYLE, current_style | WS_CAPTION);
123 HWND hwnd = GetNativeAppWindowHWND(); local
129 ui::win::SetAppIdForWindow(app_model_id_, hwnd);
130 web_app::UpdateRelaunchDetailsForApp(profile, extension, hwnd);
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_window_property_manager_browsertest_win.cc 57 HWND hwnd = views::HWNDForNativeWindow(browser->window()->GetNativeWindow()); local
60 HRESULT result = SHGetPropertyStoreForWindow(hwnd, IID_IPropertyStore,
100 HWND hwnd = views::HWNDForNativeWindow(browser->window()->GetNativeWindow()); local
104 SHGetPropertyStoreForWindow(hwnd, IID_IPropertyStore, pps.ReceiveVoid());
184 // This test checks HWND properties that are only available on Win7+.
236 // This test checks HWND properties that are only available on Win7+.
  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_state_changer_win.h 31 HWND hwnd; // The HWND associated with the status item. member in struct:NOTIFYITEM
34 UINT id; // The ID specified by the application. (hWnd, uID) is
57 StatusTrayStateChangerWin(UINT icon_id, HWND window);
94 // HWND/ID pair that were used to create the StatusTrayStateChangerWin.
115 // The HWND associated with the notification area icon that we want to
117 const HWND window_;
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
invasive.cc 168 BOOL CALLBACK EnumWindowCallback(HWND hwnd, LPARAM output) {
170 ::GetWindowThreadProcessId(hwnd, &pid);
173 ::GetWindowText(hwnd, window_title, 100);
176 hwnd, local
178 ::CloseWindow(hwnd);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp 40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
55 return DefWindowProc(hwnd, message, wParam, lParam);
81 HWND hwnd = CreateWindowA("d3d10", "d3d10", WS_OVERLAPPEDWINDOW, local
84 if(!hwnd)
88 GetClientRect(hwnd, &rc );
99 swap_chain_desc.OutputWindow = hwnd;
147 ShowWindow(hwnd, SW_SHOWDEFAULT);
148 UpdateWindow(hwnd);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11winmain.cpp 40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
55 return DefWindowProc(hwnd, message, wParam, lParam);
81 HWND hwnd = CreateWindowA("d3d11", "d3d11", WS_OVERLAPPEDWINDOW, local
84 if(!hwnd)
88 GetClientRect(hwnd, &rc );
99 swap_chain_desc.OutputWindow = hwnd;
131 ShowWindow(hwnd, SW_SHOWDEFAULT);
132 UpdateWindow(hwnd);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp 40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
55 return DefWindowProc(hwnd, message, wParam, lParam);
81 HWND hwnd = CreateWindowA("d3d10", "d3d10", WS_OVERLAPPEDWINDOW, local
84 if(!hwnd)
88 GetClientRect(hwnd, &rc );
99 swap_chain_desc.OutputWindow = hwnd;
147 ShowWindow(hwnd, SW_SHOWDEFAULT);
148 UpdateWindow(hwnd);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11winmain.cpp 40 LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
55 return DefWindowProc(hwnd, message, wParam, lParam);
81 HWND hwnd = CreateWindowA("d3d11", "d3d11", WS_OVERLAPPEDWINDOW, local
84 if(!hwnd)
88 GetClientRect(hwnd, &rc );
99 swap_chain_desc.OutputWindow = hwnd;
131 ShowWindow(hwnd, SW_SHOWDEFAULT);
132 UpdateWindow(hwnd);
    [all...]

Completed in 1486 milliseconds

1 2