HomeSort by relevance Sort by last modified time
    Searched full:hrgn (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/ui/gfx/
path_win.h 17 // Creates a new HRGN given |region|. The caller is responsible for destroying
19 GFX_EXPORT HRGN CreateHRGNFromSkRegion(const SkRegion& path);
21 // Creates a new HRGN given |path|. The caller is responsible for destroying
23 GFX_EXPORT HRGN CreateHRGNFromSkPath(const SkPath& path);
path_win.cc 14 HRGN CreateHRGNFromSkRegion(const SkRegion& region) {
27 HRGN CreateHRGNFromSkPath(const SkPath& path) {
49 HRGN dest = CreateRectRgn(0, 0, 1, 1);
56 HRGN dest = CreateRectRgn(0, 0, 1, 1);
63 HRGN dest = CreateRectRgn(0, 0, 1, 1);
gdi_util.h 35 // Modify the given hrgn by subtracting the given rectangles.
37 HRGN hrgn,
40 GFX_EXPORT HRGN ConvertPathToHRGN(const gfx::Path& path);
gdi_util.cc 65 void SubtractRectanglesFromRegion(HRGN hrgn,
68 HRGN cutout = ::CreateRectRgn(0, 0, 0, 0);
75 ::CombineRgn(hrgn, hrgn, cutout, RGN_DIFF);
81 HRGN ConvertPathToHRGN(const gfx::Path& path) {
native_widget_types.h 129 typedef HRGN NativeRegion;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi_dll.c 77 HRGN hrgn; local
86 hrgn = CreateRectRgn(0, 0, 0, 0);
87 GetRandomRgn(hdc, hrgn, SYSRGN);
88 rgn_box_type = GetRgnBox(hrgn, &rgn_box);
94 OffsetRgn(hrgn, -hwnd_origin_from_screen.x, -hwnd_origin_from_screen.y);
99 DeleteObject(hrgn);
103 rgndata_size = GetRegionData(hrgn, 0, NULL);
105 GetRegionData(hrgn, rgndata_size, rgndata);
106 DeleteObject(hrgn);
148 HRGN hrgn; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi_dll.c 77 HRGN hrgn; local
86 hrgn = CreateRectRgn(0, 0, 0, 0);
87 GetRandomRgn(hdc, hrgn, SYSRGN);
88 rgn_box_type = GetRgnBox(hrgn, &rgn_box);
94 OffsetRgn(hrgn, -hwnd_origin_from_screen.x, -hwnd_origin_from_screen.y);
99 DeleteObject(hrgn);
103 rgndata_size = GetRegionData(hrgn, 0, NULL);
105 GetRegionData(hrgn, rgndata_size, rgndata);
106 DeleteObject(hrgn);
148 HRGN hrgn; local
    [all...]
  /external/chromium_org/skia/ext/
platform_device_win.cc 208 HRGN hrgn; local
211 hrgn = CreateRectRgn(0, 0, 0, 0);
215 hrgn = CreateRectRgnIndirect(&SkIRectToRECT(region.getBounds()));
229 hrgn = PathToRegion(context);
231 int result = SelectClipRgn(context, hrgn);
233 result = DeleteObject(hrgn);
platform_device_mac.cc 151 // hrgn = PathToRegion(context);
  /external/chromium/base/win/
scoped_gdi_object.h 71 typedef ScopedGDIObject<HRGN> ScopedRegion;
  /external/chromium_org/base/win/
scoped_gdi_object.h 70 typedef ScopedGDIObject<HRGN> ScopedRegion;
  /external/chromium_org/remoting/host/
desktop_shape_tracker_win.cc 96 HRGN desktop_region = data->desktop_region.Get();
97 HRGN window_region = data->window_region.Get();
disconnect_window_win.cc 382 HRGN rgn = CreateRoundRectRgn(0, 0, width, height, kWindowBorderRadius,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 88 HRGN = HANDLE
175 'HPALETTE', 'HPEN', 'HRGN', 'HRSRC', 'HSTR', 'HTASK', 'HWINSTA',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 88 HRGN = HANDLE
175 'HPALETTE', 'HPEN', 'HRGN', 'HRSRC', 'HSTR', 'HTASK', 'HWINSTA',
  /external/chromium_org/third_party/WebKit/Source/platform/win/
HWndDC.h 49 HWndDC(HWND hwnd, HRGN hrgnClip, DWORD flags)
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_base.cc 287 HRGN hrgn = ::CreateRectRgn(clip_rect_in_pixel.x(), local
291 gfx::SubtractRectanglesFromRegion(hrgn, move.cutout_rects);
293 // Note: System will own the hrgn after we call SetWindowRgn,
294 // so we don't need to call DeleteObject(hrgn)
295 ::SetWindowRgn(window, hrgn, !move.clip_rect.IsEmpty());
  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_view_win.h 63 virtual void OnNCPaint(HRGN rgn) OVERRIDE;
native_tab_contents_view_win.cc 261 void NativeTabContentsViewWin::OnNCPaint(HRGN rgn) {
  /external/chromium_org/ui/views/controls/native/
native_view_host_win.cc 72 HRGN clip_region = CreateRectRgn(x, y, x + w, y + h);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_win.cc 392 HRGN hrgn = ::CreateRectRgn(move.clip_rect.x(), local
396 gfx::SubtractRectanglesFromRegion(hrgn, move.cutout_rects);
398 // Note: System will own the hrgn after we call SetWindowRgn,
399 // so we don't need to call DeleteObject(hrgn)
400 ::SetWindowRgn(window, hrgn, !move.clip_rect.IsEmpty());
628 base::win::ScopedGDIObject<HRGN> damage_region(CreateRectRgn(0, 0, 0, 0));
857 base::win::ScopedGDIObject<HRGN> damage_region(CreateRectRgn(0, 0, 0, 0));
    [all...]
render_widget_host_view_win.h 185 void OnNCPaint(HRGN update_region);
  /external/chromium_org/content/test/plugin/
plugin_windowless_test.cc 118 HRGN clipping_region = CreateRectRgn(0, 0, 0, 0);
  /external/chromium/chrome/browser/first_run/
try_chrome_dialog_view.cc 238 HRGN region = ::CreatePolygonRgn(polygon, arraysize(polygon), WINDING);
  /external/chromium_org/ui/views/win/
hwnd_message_handler.h 136 void SetRegion(HRGN rgn);
415 void OnNCPaint(HRGN rgn);

Completed in 465 milliseconds

1 2