Searched refs:clip (Results 1 - 25 of 136) sorted by relevance

123456

/macosx-10.10/ICU-531.30/icuSources/samples/layout/
H A DSurface.cpp18 RECT clip; local
20 clip.top = 0;
21 clip.left = 0;
22 clip.bottom = height;
23 clip.right = width;
27 ExtTextOut(fHdc, x, y - fAscent, ETO_CLIPPED | ETO_GLYPH_INDEX, &clip,
H A DGDIFontInstance.cpp60 RECT clip; local
62 clip.top = 0;
63 clip.left = 0;
64 clip.bottom = height;
65 clip.right = width;
93 ExtTextOut(fHdc, x + (le_int32) xOffset, y + (le_int32) yOffset - font->getAscent(), ETO_CLIPPED | ETO_GLYPH_INDEX, &clip,
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebDashboardRegion.h42 NSRect clip; variable
45 - (id)initWithRect:(NSRect)rect clip:(NSRect)clip type:(WebDashboardRegionType)type;
H A DWebDashboardRegion.mm32 - (id)initWithRect:(NSRect)r clip:(NSRect)c type:(WebDashboardRegionType)t
36 clip = c;
50 return clip;
80 return [NSString stringWithFormat:@"rect:%@ clip:%@ type:%s", NSStringFromRect(rect), NSStringFromRect(clip), typeName(type)];
90 return NSEqualRects(rect, [other dashboardRegionRect]) && NSEqualRects(clip, [other dashboardRegionClip]) && type == [other dashboardRegionType];
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DGraphicsContextPlatformPrivateCG.h59 void clip(const FloatRect&) {} function in class:WebCore::GraphicsContextPlatformPrivate
60 void clip(const Path&) {} function in class:WebCore::GraphicsContextPlatformPrivate
73 void clip(const FloatRect&);
74 void clip(const Path&);
H A DGradientCG.cpp72 context->clip(rect);
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DStyleVisualData.h43 return clip == o.clip
53 LengthBox clip; member in class:WebCore::StyleVisualData
H A DStyleVisualData.cpp45 , clip(o.clip)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DGraphicsContextPlatformPrivateCairo.h72 void clip(const FloatRect&);
73 void clip(const Path&);
85 void clip(const FloatRect&) {} function in class:WebCore::GraphicsContextPlatformPrivate
86 void clip(const Path&) {} function in class:WebCore::GraphicsContextPlatformPrivate
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderHTMLCanvas.cpp77 bool clip = !contentRect.contains(paintRect); local
78 GraphicsContextStateSaver stateSaver(*paintInfo.context, clip);
79 if (clip)
80 paintInfo.context->clip(pixelSnappedIntRect(contentRect));
H A DRenderThemeIOS.mm333 // To fix inner border bleeding issues <rdar://problem/9812507>, we clip to the outer border and assert that
341 context->clip(border.rect());
375 FloatRect clip = addRoundedBorderClip(box, paintInfo.context, rect);
377 float width = clip.width();
378 float height = clip.height();
382 drawAxialGradient(cgContext, gradientWithName(ConcaveGradient), clip.location(), FloatPoint(clip.x(), clip.maxY()), LinearInterpolation);
395 CGPointMake(clip.x() + width * pathRatios[0].x, clip
[all...]
H A DRenderLayerModelObject.cpp103 if (!(oldStyle->clip() == newStyle.clip()))
116 || !(oldStyle->clip() == newStyle.clip())
H A DRenderVideo.cpp186 bool clip = !contentRect.contains(rect); local
187 GraphicsContextStateSaver stateSaver(*context, clip);
188 if (clip)
189 context->clip(contentRect);
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/demos/
H A Dtextvariable.tcl14 if {!$::clip} {
60 if {$::clip} {
61 set clip [frame $T.clip$I -borderwidth 0]
62 set e [$::entryCmd $clip.e -width 48 -textvariable tvar$I]
66 eWindow -window $clip -clip yes
H A Dcolumn-lock.tcl81 $T element create label4.w window -clip yes -destroy yes
92 set clip [frame $T.clipR${I}C0 -borderwidth 0]
93 $::entryCmd $clip.e -width 4 -textvariable ::DemoColumnLock(R$i)
94 $T item element configure $I C0 label4.w -window $clip
171 $T element create windowStyle.window window -clip yes -destroy yes
189 set clip [frame $T.clipR${I}C$C -borderwidth 0]
190 $::entryCmd $clip.e -width 4 -textvariable ::DemoColumnLock(C$C)
191 $T item element configure $I $C windowStyle.window -window $clip + \
195 set clip [frame $T.clipR${I}C$C -borderwidth 0]
196 $::entryCmd $clip
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DEditing.css32 text-overflow: clip !important;
H A DSearchBar.css37 background-clip: padding-box;
H A DTimelineOverview.css67 background-clip: padding-box;
H A DFilterBar.css53 background-clip: padding-box;
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dlselect.el235 (let ((clip (x-get-clipboard)))
236 (or clip (error "there is no clipboard selection"))
238 (insert clip)))
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DCrossfadeGeneratedImage.cpp76 context->clip(FloatRect(FloatPoint(), m_crossfadeSize));
89 context->clip(dstRect);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/gtk/
H A DWebPageProxyGtk.cpp111 GdkRectangle clip = clipRect; local
112 cairo_region_t* clipRegion = cairo_region_create_rectangle(&clip);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/texmap/
H A DTextureMapperImageBuffer.cpp57 context->clip(targetRect);
96 context->clip(rect);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DGraphicsContextWin.cpp154 void GraphicsContextPlatformPrivate::clip(const FloatRect& clipRect) function in class:WebCore::GraphicsContextPlatformPrivate
161 void GraphicsContextPlatformPrivate::clip(const Path&) function in class:WebCore::GraphicsContextPlatformPrivate
/macosx-10.10/tidy-15.15/tidy/htmldoc/api/
H A Dtreeview.js65 totalHeight = totalHeight + this.children[i].navObj.clip.height
218 doc.yPos=doc.yPos+this.navObj.clip.height
365 doc.yPos=doc.yPos+this.navObj.clip.height
394 var h = this.navObj.clip.height

Completed in 704 milliseconds

123456