Searched defs:hwnd (Results 1 - 25 of 135) sorted by relevance

123456

/external/chromium_org/base/win/
H A Dmessage_window.h45 HWND hwnd() const { return window_; } function in class:base::win::MessageWindow
60 static LRESULT CALLBACK WindowProc(HWND hwnd, UINT message, WPARAM wparam,
H A Dmessage_window_unittest.cc47 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);
H A Dwrapped_window_proc.h56 // LRESULT CALLBACK MyWinProc(HWND hwnd, UINT message,
72 LRESULT CALLBACK WrappedWindowProc(HWND hwnd, UINT message, argument
76 rv = proc(hwnd, message, wparam, lparam);
H A Dscoped_hdc.h21 explicit ScopedGetDC(HWND hwnd) argument
22 : hwnd_(hwnd),
23 hdc_(GetDC(hwnd)) {
/external/chromium_org/ui/aura/
H A Dwindow_tree_host_win.h45 gfx::AcceleratedWidget hwnd() const { return widget_; } function in class:aura::WindowTreeHostWin
/external/chromium_org/ui/base/win/
H A Dmessage_box_win.cc16 int MessageBox(HWND hwnd, argument
35 return ::MessageBox(hwnd, text_ptr, caption_ptr, actual_flags);
H A Dmouse_wheel_util.cc55 ViewProp* SetWindowSupportsRerouteMouseWheel(HWND hwnd) { argument
56 return new ViewProp(hwnd, kHWNDSupportMouseWheelRerouting,
/external/chromium_org/ui/views/win/
H A Dscoped_fullscreen_visibility.cc14 ScopedFullscreenVisibility::ScopedFullscreenVisibility(HWND hwnd) argument
15 : hwnd_(hwnd) {
47 bool ScopedFullscreenVisibility::IsHiddenForFullscreen(HWND hwnd) { argument
50 return full_screen_windows_->find(hwnd) != full_screen_windows_->end();
H A Dhwnd_util_aurawin.cc36 HWND hwnd = host->GetAcceleratedWidget(); local
38 DWORD style = ::GetWindowLong(hwnd, GWL_STYLE);
39 DWORD ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE);
H A Dfullscreen_handler.h25 void set_hwnd(HWND hwnd) { hwnd_ = hwnd; } argument
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dminimize_button_metrics_win.cc14 int GetMinimizeButtonOffsetForWindow(HWND hwnd) { argument
20 SendMessage(hwnd, WM_GETTITLEBARINFOEX, 0,
34 MapWindowPoints(HWND_DESKTOP, hwnd, &minimize_button_corner, 1);
52 void MinimizeButtonMetrics::Init(HWND hwnd) { argument
54 hwnd_ = hwnd;
H A Dtaskbar_decorator_win.cc34 void SetOverlayIcon(HWND hwnd, scoped_ptr<SkBitmap> bitmap) { argument
66 taskbar->SetOverlayIcon(hwnd, icon, L"");
78 HWND hwnd = views::HWNDForNativeWindow(window);
82 if (!::IsWindowVisible(hwnd))
93 FROM_HERE, base::Bind(&SetOverlayIcon, hwnd, Passed(&bitmap)),
H A Dbrowser_window_property_manager_win.cc43 void BrowserWindowPropertyManager::UpdateWindowProperties(HWND hwnd) { argument
44 DCHECK(hwnd);
68 ui::win::SetAppIdForWindow(app_id, hwnd);
69 web_app::UpdateRelaunchDetailsForApp(profile, extension, hwnd);
95 hwnd);
/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils_win.cc29 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);
52 if (foreground_window == hwnd)
/external/chromium_org/cloud_print/virtual_driver/win/
H A Dvirtual_driver_helpers.cc20 void DisplayWindowsMessage(HWND hwnd, HRESULT hr, argument
22 ::MessageBox(hwnd, GetErrorMessage(hr).c_str(), caption.c_str(), MB_OK);
/external/chromium_org/content/browser/renderer_host/
H A Dlegacy_render_widget_host_win.h87 HWND hwnd() { return m_hWnd; } function in class:content::LegacyRenderWidgetHostHWND
110 virtual void OnFinalMessage(HWND hwnd) OVERRIDE;
/external/chromium_org/content/browser/
H A Dsystem_message_window_win.h27 LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
30 static LRESULT CALLBACK WndProcThunk(HWND hwnd, argument
35 GetWindowLongPtr(hwnd, GWLP_USERDATA));
37 return msg_wnd->WndProc(hwnd, message, wparam, lparam);
38 return ::DefWindowProc(hwnd, message, wparam, lparam);
/external/chromium_org/third_party/WebKit/Source/platform/win/
H A DHWndDC.h43 explicit HWndDC(HWND hwnd) argument
44 : m_hwnd(hwnd)
45 , m_hdc(::GetDC(hwnd))
49 HWndDC(HWND hwnd, HRGN hrgnClip, DWORD flags) argument
50 : m_hwnd(hwnd)
51 , m_hdc(::GetDCEx(hwnd, hrgnClip, flags))
60 HDC setHWnd(HWND hwnd) argument
63 m_hwnd = hwnd;
64 m_hdc = ::GetDC(hwnd);
/external/chromium_org/base/power_monitor/
H A Dpower_monitor_device_source_win.cc97 HWND hwnd,
106 return ::DefWindowProc(hwnd, message, wparam, lparam);
96 WndProcThunk( HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam) argument
/external/chromium_org/chrome/browser/extensions/api/extension_action/
H A Dbrowser_action_interactive_test.cc333 const HWND hwnd = views::HWNDForNativeView(view); local
334 EXPECT_EQ(hwnd,
336 EXPECT_EQ(TRUE, ::IsWindow(hwnd));
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/location_bar/
H A Dstar_view_browsertest.cc80 BOOL CALLBACK EnumerateChildren(HWND hwnd, LPARAM l_param) { argument
82 *child = hwnd;
116 HWND hwnd = tab->GetNativeView()->GetHost()->GetAcceleratedWidget(); local
118 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
/external/chromium_org/remoting/host/
H A Dcontinue_window_win.cc36 BOOL OnDialogMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
74 BOOL CALLBACK ContinueWindowWin::DialogProc(HWND hwnd, UINT msg, argument
80 SetWindowLongPtr(hwnd, DWLP_USER, (LONG_PTR)win);
82 LONG_PTR lp = GetWindowLongPtr(hwnd, DWLP_USER);
87 return win->OnDialogMessage(hwnd, msg, wParam, lParam);
90 BOOL ContinueWindowWin::OnDialogMessage(HWND hwnd, UINT msg, argument
106 ::EndDialog(hwnd, LOWORD(wParam));
111 ::EndDialog(hwnd, LOWORD(wParam));
/external/chromium_org/ui/gfx/
H A Dcanvas_paint_win.cc13 CanvasSkiaPaint::CanvasSkiaPaint(HWND hwnd, HDC dc, const PAINTSTRUCT& ps) argument
14 : hwnd_(hwnd),
/external/openssl/apps/
H A Dwinrand.c73 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) argument
126 hdc = BeginPaint(hwnd, &ps);
127 GetClientRect(hwnd, &rect);
130 EndPaint(hwnd, &ps);
142 MessageBox(hwnd, "Couldn't write random file!",
147 return DefWindowProc(hwnd, iMs
[all...]
/external/chromium_org/ash/test/
H A Dtest_metro_viewer_process_host.cc50 HWND hwnd = reinterpret_cast<HWND>(target_surface); local
52 aura::RemoteWindowTreeHostWin::Instance()->SetRemoteWindowHandle(hwnd);

Completed in 655 milliseconds

123456