Searched refs:hwnd (Results 1 - 25 of 243) sorted by relevance

12345678910

/external/chromium_org/third_party/npapi/npspy/windows/
H A Dwindowsxx.h42 #define HANDLE_WM_NOTIFY(hwnd, wParam, lParam, fn) \
43 (fn)((hwnd), (int)(wParam), (LPNMHDR)lParam)
/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils_win.cc27 HWND hwnd = window->GetHost()->GetAcceleratedWidget(); local
28 ::ShowWindow(hwnd, SW_HIDE);
37 HWND hwnd = window->GetHost()->GetAcceleratedWidget(); local
39 ::ShowWindow(hwnd, SW_SHOW);
41 if (GetForegroundWindow() != hwnd) {
43 ui::ForegroundHelper::SetForeground(hwnd);
49 return GetForegroundWindow() == hwnd;
/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/chrome/test/mini_installer/
H A Dchrome_helper.py61 def EnumerateWindowCallback(hwnd, _):
62 _, found_process_id = win32process.GetWindowThreadProcessId(hwnd)
63 if found_process_id in process_ids and win32gui.IsWindowVisible(hwnd):
64 hwnds.append(hwnd)
65 # Enumerate all the top-level windows and call the callback with the hwnd as
84 for hwnd in GetWindowHandles(process_ids):
85 if re.match(class_pattern, win32gui.GetClassName(hwnd)):
/external/chromium_org/third_party/skia/include/views/
H A DSkApplication.h15 extern SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
/external/skia/include/views/
H A DSkApplication.h15 extern SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
/external/chromium_org/ui/base/win/
H A Dhwnd_subclass_unittest.cc53 virtual bool FilterMessage(HWND hwnd,
73 EXPECT_TRUE(window.hwnd() != NULL);
77 HWNDSubclass::AddFilterToTarget(window.hwnd(), &mf);
81 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0);
92 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0);
102 EXPECT_TRUE(window.hwnd() != NULL);
107 HWNDSubclass::AddFilterToTarget(window.hwnd(), &mf1);
108 HWNDSubclass::AddFilterToTarget(window.hwnd(), &mf2);
112 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0);
125 ::SendMessage(window.hwnd(), WM_NCHITTES
[all...]
H A Dmessage_box_win.h19 UI_BASE_EXPORT int MessageBox(HWND hwnd,
H A Dhidden_window.cc34 EnableWindow(g_temp_parent->hwnd(), FALSE);
53 return TempParent::Get()->hwnd();
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumdxgi.idl96 [in] HWND hwnd,
105 [in] HWND hwnd,
111 [in] HWND hwnd
116 [in] HWND hwnd,
/external/chromium_org/ui/views/win/
H A Dscoped_fullscreen_visibility.h22 explicit ScopedFullscreenVisibility(HWND hwnd);
25 // Returns true if |hwnd| is currently hidden due to instance(s) of this
27 static bool IsHiddenForFullscreen(HWND hwnd);
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();
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumdxgi.idl96 [in] HWND hwnd,
105 [in] HWND hwnd,
111 [in] HWND hwnd
116 [in] HWND hwnd,
/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/ui/gfx/win/
H A Dhwnd_util.h19 GFX_EXPORT base::string16 GetClassName(HWND hwnd);
22 GFX_EXPORT WNDPROC SetWindowProc(HWND hwnd, WNDPROC wndproc);
26 GFX_EXPORT void* SetWindowUserData(HWND hwnd, void* user_data);
27 GFX_EXPORT void* GetWindowUserData(HWND hwnd);
39 // If |hwnd| is NULL logs various thing and CHECKs. Invoke right after calling
41 GFX_EXPORT void CheckWindowCreated(HWND hwnd);
/external/chromium_org/tools/site_compare/drivers/win32/
H A Dwindowing.py25 def FindChildWindows(hwnd, path):
29 hwnd: Handle of the parent window
39 windows_to_check = [hwnd]
83 def FindChildWindow(hwnd, path):
90 hwnd: Handle of the parent window
96 return FindChildWindows(hwnd, path)[0]
99 def ScrapeWindow(hwnd, rect=None):
103 hwnd: handle of the window to scrape
111 SetForegroundWindow(hwnd)
114 if not rect: rect = win32gui.GetClientRect(hwnd)
[all...]
/external/icu/icu4c/source/samples/layout/
H A Dclayout.c42 void PrettyTitle(HWND hwnd, char *fileName) argument
48 SetWindowTextA(hwnd, title);
51 void InitParagraph(HWND hwnd, Context *context) argument
67 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
73 HWND hwnd; local
98 hwnd = CreateWindow(szAppName, NULL,
104 ShowWindow(hwnd, iCmdShow);
105 UpdateWindow(hwnd);
108 if (!TranslateAccelerator(hwnd, hAccel, &msg)) {
118 LRESULT CALLBACK WndProc(HWND hwnd, UIN argument
[all...]
H A Dlayout.cpp41 void PrettyTitle(HWND hwnd, char *fileName) argument
47 SetWindowTextA(hwnd, title);
50 void InitParagraph(HWND hwnd, Context *context) argument
66 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
72 HWND hwnd; local
97 hwnd = CreateWindow(szAppName, NULL,
103 ShowWindow(hwnd, iCmdShow);
104 UpdateWindow(hwnd);
107 if (!TranslateAccelerator(hwnd, hAccel, &msg)) {
117 LRESULT CALLBACK WndProc(HWND hwnd, UIN argument
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dweb_input_event_builders_win.h16 static blink::WebKeyboardEvent Build(HWND hwnd,
25 static blink::WebMouseEvent Build(HWND hwnd,
34 static blink::WebMouseWheelEvent Build(HWND hwnd,
/external/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibevents_c.h30 DIB_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
/external/chromium_org/third_party/openssl/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/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/content/browser/renderer_host/
H A Dlegacy_render_widget_host_win.cc29 ::DestroyWindow(hwnd());
47 if (!::IsWindow(legacy_window_instance->hwnd()))
55 ::SetParent(hwnd(), parent);
60 ::EnableWindow(hwnd(), FALSE);
62 ::EnableWindow(hwnd(), TRUE);
67 return ::GetParent(hwnd());
75 ::ShowWindow(hwnd(), SW_SHOW);
79 ::ShowWindow(hwnd(), SW_HIDE);
84 ::SetWindowPos(hwnd(), NULL, bounds_in_pixel.x(), bounds_in_pixel.y(),
88 void LegacyRenderWidgetHostHWND::OnFinalMessage(HWND hwnd) { argument
[all...]
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dwindow_finder_win.cc37 static BOOL CALLBACK WindowCallbackProc(HWND hwnd, LPARAM lParam) { argument
40 if (finder->ignore_.find(hwnd) != finder->ignore_.end())
43 return finder->ShouldStopIterating(hwnd) ? FALSE : TRUE;
75 virtual bool ShouldStopIterating(HWND hwnd) { argument
76 if (hwnd == target_) {
82 if (!IsWindowVisible(hwnd)) {
88 if (!GetWindowRect(hwnd, &r) || !PtInRect(&r, screen_loc_.ToPOINT())) {
93 LONG ex_styles = GetWindowLong(hwnd, GWL_EXSTYLE);
109 // hwnd is at the point. Make sure the point is within the windows region.
110 if (GetWindowRgn(hwnd, tmp_region
179 ShouldStopIterating(HWND hwnd) argument
[all...]
/external/chromium_org/ash/host/
H A Dash_window_tree_host_win.cc39 saved_window_style_ = GetWindowLong(hwnd(), GWL_STYLE);
40 saved_window_ex_style_ = GetWindowLong(hwnd(), GWL_EXSTYLE);
41 GetWindowRect(hwnd(), &saved_window_rect_);
42 SetWindowLong(hwnd(),
46 hwnd(),
53 GetMonitorInfo(MonitorFromWindow(hwnd(), MONITOR_DEFAULTTONEAREST), &mi);
57 SetWindowLong(hwnd(), GWL_STYLE, saved_window_style_);
58 SetWindowLong(hwnd(), GWL_EXSTYLE, saved_window_ex_style_);
61 SetWindowPos(hwnd(),

Completed in 847 milliseconds

12345678910