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

1 2 3 4

  /external/chromium_org/chrome/test/base/
interactive_test_utils_win.cc 32 HWND hwnd = window->GetDispatcher()->host()->GetAcceleratedWidget(); local
34 HWND hwnd = window;
36 ::ShowWindow(hwnd, SW_HIDE);
46 HWND hwnd = window->GetDispatcher()->host()->GetAcceleratedWidget(); local
48 HWND hwnd = window;
51 ::ShowWindow(hwnd, SW_SHOW)
    [all...]
  /external/chromium_org/chrome/browser/automation/
testing_automation_provider_win.cc 21 HWND window = browser->window()->GetNativeWindow();
31 HWND hwnd = window_tracker_->GetResource(handle); local
32 if (::MoveWindow(hwnd, bounds.x(), bounds.y(), bounds.width(),
  /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/browser/ui/views/
dropdown_bar_host_win.cc 22 HWND hwnd = contents->GetView()->GetContentNativeView(); local
25 MSG msg = { hwnd, key_event.native_event().message, key, 0 };
  /external/chromium/chrome/browser/ui/views/
dropdown_bar_host_win.cc 19 HWND hwnd = contents->GetContentNativeView(); local
22 return NativeWebKeyboardEvent(hwnd, key_event.native_event().message, key, 0);
  /external/chromium_org/ui/views/win/
hwnd_util_win.cc 11 HWND HWNDForView(const View* view) {
15 // Returns the HWND associated with the specified widget.
16 HWND HWNDForWidget(const Widget* widget) {
20 HWND HWNDForNativeView(const gfx::NativeView view) {
24 HWND HWNDForNativeWindow(const gfx::NativeWindow window) {
31 HWND hwnd = view->GetWidget()->GetNativeWindow(); local
33 DWORD style = ::GetWindowLong(hwnd, GWL_STYLE);
34 DWORD ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE);
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) {
37 HWND hwnd = dispatcher->host()->GetAcceleratedWidget(); local
39 DWORD style = ::GetWindowLong(hwnd, GWL_STYLE);
40 DWORD ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE);
  /external/chromium/chrome/browser/automation/
testing_automation_provider_win.cc 26 HWND hwnd = window_tracker_->GetResource(handle); local
27 if (hwnd) {
30 GetWindowPlacement(hwnd, &window_placement);
40 HWND window = browser->window()->GetNativeHandle();
49 HWND hwnd = window_tracker_->GetResource(handle); local
50 if (hwnd) {
53 GetWindowPlacement(hwnd, &window_placement);
63 HWND hwnd = window_tracker_->GetResource(handle) local
75 HWND hwnd = window_tracker_->GetResource(handle); local
    [all...]
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view_host.cc 73 // Create the HWND.
74 HWND hwnd = view_win->Create(parent_native_view_); local
76 native_host_->Attach(hwnd);
  /external/chromium_org/ash/test/
test_metro_viewer_process_host.cc 32 HWND hwnd = reinterpret_cast<HWND>(target_surface); local
33 aura::RemoteRootWindowHostWin::Instance()->Connected(this, hwnd);
35 backing_surface_.reset(new AcceleratedSurface(hwnd));
  /external/chromium_org/chrome/browser/metro_viewer/
chrome_metro_viewer_process_host_aurawin.cc 119 HWND hwnd = reinterpret_cast<HWND>(target_surface); local
121 aura::RemoteRootWindowHostWin::Instance()->Connected(this, hwnd);
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_window_property_manager_browsertest_win.cc 47 HWND hwnd = views::HWNDForNativeWindow(browser->window()->GetNativeWindow()); local
50 HRESULT result = SHGetPropertyStoreForWindow(hwnd, IID_IPropertyStore,
112 // This test checks HWND properties that are only available on Win7+.
  /external/chromium_org/chrome/browser/ui/webui/print_preview/
print_preview_ui_browsertest.cc 84 BOOL CALLBACK EnumerateChildren(HWND hwnd, LPARAM l_param) {
85 HWND* child = reinterpret_cast<HWND*>(l_param);
86 *child = hwnd;
113 HWND hwnd = tab->GetView()->GetNativeView()->GetDispatcher()->host()-> local
115 HWND child = NULL;
116 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
  /external/chromium_org/gpu/gles2_conform_support/native/
egl_native_gtk.cc 45 GtkWidget* hwnd = gtk_window_new(GTK_WINDOW_POPUP); local
47 GtkWidget* hwnd = gtk_window_new(GTK_WINDOW_TOPLEVEL);
50 gtk_window_set_title(GTK_WINDOW(hwnd), title);
51 gtk_window_set_default_size(GTK_WINDOW(hwnd), width, height);
52 gtk_widget_set_double_buffered(hwnd, FALSE);
53 gtk_widget_set_app_paintable(hwnd, TRUE);
56 gtk_widget_show_now(hwnd);
58 *pNativeWindow = GDK_WINDOW_XWINDOW(hwnd->window);
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/third_party/openssl/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/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/ui/views/accessibility/
browser_views_accessibility_browsertest.cc 120 HWND hwnd = browser_window->GetNativeWindow(); local
121 ASSERT_TRUE(NULL != hwnd);
125 HRESULT hr = ::AccessibleObjectFromWindow(hwnd, OBJID_WINDOW, IID_IAccessible,
  /external/chromium_org/chrome/browser/ui/views/location_bar/
star_view_browsertest.cc 79 BOOL CALLBACK EnumerateChildren(HWND hwnd, LPARAM l_param) {
80 HWND* child = reinterpret_cast<HWND*>(l_param);
81 *child = hwnd;
114 HWND hwnd = tab->GetView()->GetNativeView()->GetDispatcher()->host()-> local
116 HWND child = NULL;
117 EnumChildWindows(hwnd, EnumerateChildren,reinterpret_cast<LPARAM>(&child));
  /external/chromium_org/ui/base/win/
shell.cc 65 bool PreventWindowFromPinning(HWND hwnd) {
73 hwnd, __uuidof(*pps), reinterpret_cast<void**>(pps.Receive()));
87 HWND hwnd) {
95 hwnd, __uuidof(*pps), reinterpret_cast<void**>(pps.Receive()));
115 void SetAppIdForWindow(const string16& app_id, HWND hwnd) {
116 SetAppDetailsForWindow(app_id, string16(), string16(), string16(), hwnd);
119 void SetAppIconForWindow(const string16& app_icon, HWND hwnd)
120 SetAppDetailsForWindow(string16(), app_icon, string16(), string16(), hwnd); local
130 hwnd); local
    [all...]
  /external/chromium_org/ui/gfx/win/
window_impl.h 27 virtual BOOL ProcessWindowMessage(HWND window,
39 // destroying a HWND. This class also hosts the windows procedure used by all
49 void Init(HWND parent, const gfx::Rect& bounds);
54 // Returns the HWND associated with this Window.
55 HWND hwnd() const { return hwnd_; } function in class:gfx::WindowImpl
79 // this object is properly disassociated from the HWND during destruction,
88 static LRESULT CALLBACK WndProc(HWND window,
93 // Gets the window class atom to use when creating the corresponding HWND.
109 // Our hwnd
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_views_accessibility_browsertest.cc 126 HWND hwnd = browser_window->GetNativeHandle(); local
127 ASSERT_TRUE(NULL != hwnd);
131 HRESULT hr = ::AccessibleObjectFromWindow(hwnd, OBJID_WINDOW, IID_IAccessible,
  /external/chromium/chrome/browser/ui/views/extensions/
extension_view.cc 85 // Create the HWND. Note:
88 // additional HWND to parent off of because windowed plugin HWNDs cannot
92 HWND hwnd = view_win->Create(GetWidget()->GetNativeView()); local
94 Attach(hwnd);
  /external/chromium_org/chrome_frame/
find_dialog.cc 36 LRESULT CFFindDialog::OnFind(WORD wNotifyCode, WORD wID, HWND hWndCtl,
57 LRESULT CFFindDialog::OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl,
73 HWND text_field = GetDlgItem(IDC_FIND_TEXT);
86 HWND hwnd = GetActiveWindow(); local
87 if (::IsWindow(hwnd) && ::IsDialogMessage(hwnd, msg)) {
92 msg->hwnd = NULL;

Completed in 1180 milliseconds

1 2 3 4