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

1 2

  /external/chromium_org/ui/gfx/
path.h 36 // Creates a NativeRegion from the path. The caller is responsible for freeing
38 NativeRegion CreateNativeRegion() const;
42 static gfx::NativeRegion IntersectRegions(gfx::NativeRegion r1,
43 gfx::NativeRegion r2);
46 static gfx::NativeRegion CombineRegions(gfx::NativeRegion r1,
47 gfx::NativeRegion r2);
51 static gfx::NativeRegion SubtractRegion(gfx::NativeRegion r1
    [all...]
path_aura.cc 26 NativeRegion Path::IntersectRegions(NativeRegion r1, NativeRegion r2) {
33 NativeRegion Path::CombineRegions(NativeRegion r1, NativeRegion r2) {
40 NativeRegion Path::SubtractRegion(NativeRegion r1, NativeRegion r2) {
path_win.cc 43 NativeRegion Path::CreateNativeRegion() const {
48 NativeRegion Path::IntersectRegions(NativeRegion r1, NativeRegion r2) {
55 NativeRegion Path::CombineRegions(NativeRegion r1, NativeRegion r2) {
62 NativeRegion Path::SubtractRegion(NativeRegion r1, NativeRegion r2)
    [all...]
native_widget_types.h 116 typedef SkRegion* NativeRegion;
127 typedef void* NativeRegion;
133 typedef void* NativeRegion;
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusRegion.h 105 DllExports::GdipDeleteRegion(nativeRegion);
116 SetStatus(DllExports::GdipCloneRegion(nativeRegion, &region));
124 return SetStatus(DllExports::GdipSetInfinite(nativeRegion));
130 return SetStatus(DllExports::GdipSetEmpty(nativeRegion));
139 return SetStatus(DllExports::GdipCombineRegionRect(nativeRegion, &rect, CombineModeIntersect));
145 return SetStatus(DllExports::GdipCombineRegionRectI(nativeRegion, &rect, CombineModeIntersect));
151 return SetStatus(DllExports::GdipCombineRegionPath(nativeRegion, path->nativePath, CombineModeIntersect));
157 return SetStatus(DllExports::GdipCombineRegionRegion(nativeRegion, region->nativeRegion, CombineModeIntersect));
163 return SetStatus(DllExports::GdipCombineRegionRect(nativeRegion, &rect, CombineModeUnion));
    [all...]
GdiPlusHeaders.h 180 Region(GpRegion* nativeRegion);
182 VOID SetNativeRegion(GpRegion* nativeRegion);
185 GpRegion* nativeRegion;
GdiPlusGraphics.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusimpl.h 1115 __inline__ Region::Region(): nativeRegion(NULL), lastStatus(Ok)
1117 lastStatus = DllExports::GdipCreateRegion(&nativeRegion);
1120 __inline__ Region::Region(const RectF& rect): nativeRegion(NULL), lastStatus(Ok)
1122 lastStatus = DllExports::GdipCreateRegionRect(&rect, &nativeRegion);
1125 __inline__ Region::Region(const Rect& rect): nativeRegion(NULL), lastStatus(Ok)
1127 lastStatus = DllExports::GdipCreateRegionRectI(&rect, &nativeRegion);
1131 nativeRegion(NULL), lastStatus(Ok)
1134 path ? path->nativePath : NULL, &nativeRegion);
1138 nativeRegion(NULL), lastStatus(Ok)
1141 regionData, size, &nativeRegion);
    [all...]
gdiplusgraphics.h 831 region ? region->nativeRegion : NULL,
    [all...]
gdiplusheaders.h 567 nativeRegion(region), lastStatus(status) {}
577 GpRegion *nativeRegion;
  /external/chromium_org/ui/views/widget/
native_widget_mac.h 62 virtual void SetShape(gfx::NativeRegion shape) OVERRIDE;
native_widget_aura.h 92 virtual void SetShape(gfx::NativeRegion shape) OVERRIDE;
native_widget_mac.mm 203 void NativeWidgetMac::SetShape(gfx::NativeRegion shape) {
native_widget_private.h 186 virtual void SetShape(gfx::NativeRegion shape) = 0;
native_widget_aura.cc 440 void NativeWidgetAura::SetShape(gfx::NativeRegion region) {
    [all...]
widget.h 444 void SetShape(gfx::NativeRegion shape);
    [all...]
widget.cc 560 void Widget::SetShape(gfx::NativeRegion shape) {
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_window_tree_host.h 96 virtual void SetShape(gfx::NativeRegion native_region) = 0;
desktop_native_widget_aura.h 138 virtual void SetShape(gfx::NativeRegion shape) OVERRIDE;
desktop_window_tree_host_win.h 71 virtual void SetShape(gfx::NativeRegion native_region) OVERRIDE;
desktop_window_tree_host_x11.h 113 virtual void SetShape(gfx::NativeRegion native_region) OVERRIDE;
desktop_window_tree_host_win.cc 281 void DesktopWindowTreeHostWin::SetShape(gfx::NativeRegion native_region) {
    [all...]
desktop_native_widget_aura.cc 734 void DesktopNativeWidgetAura::SetShape(gfx::NativeRegion shape) {
    [all...]
desktop_window_tree_host_x11.cc 494 void DesktopWindowTreeHostX11::SetShape(gfx::NativeRegion native_region) {
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java 403 long nativeRegion,
410 Region_Delegate region = Region_Delegate.getDelegate(nativeRegion);
    [all...]

Completed in 3036 milliseconds

1 2