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

1 2 3

  /external/chromium_org/chrome/test/base/
interactive_test_utils_win.cc 32 HWND hwnd = window->GetRootWindow()->GetAcceleratedWidget(); local
34 HWND hwnd = window;
36 ::ShowWindow(hwnd, SW_HIDE);
45 HWND hwnd = window->GetRootWindow()->GetAcceleratedWidget(); local
47 HWND hwnd = window;
50 ::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 12 HWND HWNDForView(const View* view) {
16 HWND HWNDForWidget(const Widget* widget) {
20 HWND HWNDForNativeView(const gfx::NativeView view) {
25 HWND HWNDForNativeWindow(const gfx::NativeWindow window) {
36 HWND hwnd = window->GetAcceleratedWidget(); local
38 DWORD style = ::GetWindowLong(hwnd, GWL_STYLE);
39 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
34 backing_surface_.reset(new AcceleratedSurface(hwnd));
38 any_window->SetNewTargetWindow(hwnd);
  /external/chromium_org/chrome/browser/metro_viewer/
chrome_metro_viewer_process_host_aurawin.cc 88 HWND hwnd = reinterpret_cast<HWND>(target_surface); local
92 any_window->SetNewTargetWindow(hwnd);
  /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/media/tools/shader_bench/
window_linux.cc 29 GtkWidget* hwnd = gtk_window_new(GTK_WINDOW_TOPLEVEL); local
31 gtk_window_set_default_size(GTK_WINDOW(hwnd), width, height);
32 gtk_widget_set_double_buffered(hwnd, FALSE);
33 gtk_widget_set_app_paintable(hwnd, TRUE);
34 gtk_widget_show(hwnd);
36 return GTK_WINDOW(hwnd);
window_win.cc 11 static LRESULT CALLBACK WindowProc(HWND hwnd, UINT msg,
16 ::DestroyWindow(hwnd);
28 reinterpret_cast<Window*>(GetWindowLongPtr(hwnd, GWLP_USERDATA));
31 ::ValidateRect(hwnd, NULL);
35 result = ::DefWindowProc(hwnd, msg, w_param, l_param);
61 HWND hwnd = CreateWindow( local
73 if (hwnd == NULL)
76 return hwnd;
    [all...]
  /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/ui/base/win/
shell.cc 31 HWND hwnd) {
39 hwnd, __uuidof(*pps), reinterpret_cast<void**>(pps.Receive()));
101 void SetAppIdForWindow(const string16& app_id, HWND hwnd) {
102 SetAppDetailsForWindow(app_id, string16(), string16(), string16(), hwnd);
105 void SetAppIconForWindow(const string16& app_icon, HWND hwnd) {
106 SetAppDetailsForWindow(string16(), app_icon, string16(), string16(), hwnd); local
111 HWND hwnd)
116 hwnd); local
    [all...]
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:ui::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;
  /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);

Completed in 511 milliseconds

1 2 3