Searched refs:center (Results 1 - 25 of 401) sorted by relevance

1234567891011>>

/macosx-10.9.5/kext_tools-326.95.1/
H A Dkextd_watchvol.h38 CFNotificationCenterRef center,
45 CFNotificationCenterRef center,
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DCircle.py9 center = objc.ivar(NSPoint.__typestr__) variable in class:Circle
14 self.center.x - self.radius,
15 self.center.y - self.radius,
27 CGContextTranslateCTM(context, self.center.x, self.center.y)
H A DTLayerView.py40 circle.center = makeRandomPointInRect(self.bounds())
91 center = circle.center
93 center.x += point.x - start.x;
94 center.y += point.y - start.y;
95 circle.center = center
103 center = circle.center
105 dx = point.x - center
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DCircle.py9 center = objc.ivar(NSPoint.__typestr__) variable in class:Circle
14 self.center.x - self.radius,
15 self.center.y - self.radius,
27 CGContextTranslateCTM(context, self.center.x, self.center.y)
H A DTLayerView.py40 circle.center = makeRandomPointInRect(self.bounds())
91 center = circle.center
93 center.x += point.x - start.x;
94 center.y += point.y - start.y;
95 circle.center = center
103 center = circle.center
105 dx = point.x - center
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dezimage.el140 ((:type xpm :file "ezimage/dir.xpm" :ascent center))
144 ((:type xpm :file "ezimage/dir-plus.xpm" :ascent center))
148 ((:type xpm :file "ezimage/dir-minus.xpm" :ascent center))
152 ((:type xpm :file "ezimage/page-plus.xpm" :ascent center))
156 ((:type xpm :file "ezimage/page-minus.xpm" :ascent center))
160 ((:type xpm :file "ezimage/page.xpm" :ascent center))
164 ((:type xpm :file "ezimage/tag.xpm" :ascent center))
168 ((:type xpm :file "ezimage/tag-plus.xpm" :ascent center))
172 ((:type xpm :file "ezimage/tag-minus.xpm" :ascent center))
176 ((:type xpm :file "ezimage/tag-gt.xpm" :ascent center))
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DGapRects.h32 const LayoutRect& center() const { return m_center; } function in struct:WebCore::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dsquare23 bind .s <1> {center %x %y}
24 bind .s <B1-Motion> {center %x %y}
30 proc center {x y} {
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dsquare20 bind .s <1> {center %x %y}
21 bind .s <B1-Motion> {center %x %y}
27 proc center {x y} {
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DthemeQtNoListboxes.css32 -webkit-box-align: center;
/macosx-10.9.5/WebCore-7537.78.1/platform/mediastream/blackberry/
H A DMediaStreamCenterBlackBerry.cpp47 DEFINE_STATIC_LOCAL(MediaStreamCenterBlackBerry, center, ());
48 return center;
/macosx-10.9.5/WebCore-7537.78.1/platform/mediastream/gstreamer/
H A DMediaStreamCenterGStreamer.cpp47 DEFINE_STATIC_LOCAL(MediaStreamCenterGStreamer, center, ());
48 return center;
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/DotView/
H A DDotView.rb10 @center = OSX::NSPoint.new(bounds.size.width / 2,
19 dot_rect = OSX::NSRect.new(@center.x - @radius, @center.y - @radius,
30 @center = convertPoint(event.locationInWindow, :fromView, nil)
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DFloatQuad.cpp182 static inline bool lineIntersectsCircle(const FloatPoint& center, float radius, const FloatPoint& p0, const FloatPoint& p1) argument
184 float x0 = p0.x() - center.x(), y0 = p0.y() - center.y();
185 float x1 = p1.x() - center.x(), y1 = p1.y() - center.y();
196 // If distance between the center point and the line > the radius,
208 bool FloatQuad::intersectsCircle(const FloatPoint& center, float radius) const argument
210 return containsPoint(center) // The circle may be totally contained by the quad.
211 || lineIntersectsCircle(center, radius, m_p1, m_p2)
212 || lineIntersectsCircle(center, radiu
217 intersectsEllipse(const FloatPoint& center, const FloatSize& radii) const argument
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dsquare41 bind('1', proc{|x,y| center(x,y)}, '%s %y')
42 bind('B1-Motion', proc{|x,y| center(x,y)}, '%s %y')
50 def center(x,y)
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dsquare41 bind('1', proc{|x,y| center(x,y)}, '%s %y')
42 bind('B1-Motion', proc{|x,y| center(x,y)}, '%s %y')
50 def center(x,y)
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGEllipse.cpp131 FloatPoint center = FloatPoint(m_center.x() - point.x(), m_center.y() - point.y()); local
135 float xrXOuter = center.x() / (m_radii.width() + halfStrokeWidth);
136 float yrYOuter = center.y() / (m_radii.height() + halfStrokeWidth);
140 float xrXInner = center.x() / (m_radii.width() - halfStrokeWidth);
141 float yrYInner = center.y() / (m_radii.height() - halfStrokeWidth);
150 FloatPoint center = FloatPoint(m_center.x() - point.x(), m_center.y() - point.y());
154 float xrX = center.x() / m_radii.width();
155 float yrY = center.y() / m_radii.height();
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-InstantMessage/Examples/ABPresence/
H A DServiceWatcher.py27 # Received from IMService's custom notification center. Posted when a
38 center = NSNotificationCenter.defaultCenter()
40 center.postNotificationName_object_(
43 # Received from IMService's custom notification center. Posted when the
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-InstantMessage/Examples/ABPresence/
H A DServiceWatcher.py27 # Received from IMService's custom notification center. Posted when a
38 center = NSNotificationCenter.defaultCenter()
40 center.postNotificationName_object_(
43 # Received from IMService's custom notification center. Posted when the
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dextfileselectiondialog.rb21 mfsd.center
H A Dfileselectiondialog.rb21 mfsd.center
H A Dfinddialog.rb12 fd.center(st)
/macosx-10.9.5/tcl-102/tcl_ext/tclsoap/tclsoap/cgi-bin/
H A Dupload18 cgi_h1 align=center $title
/macosx-10.9.5/WebCore-7537.78.1/Resources/blackberry/
H A DtimeControlBlackBerry.css24 text-align: center;
27 -webkit-box-pack: center;
45 -webkit-box-pack: center;
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/
H A Dbasic.tcl74 $core new attribute anchor linked {anchor center}
273 HandleText $canvas $attributes items [dict get $corners center]
303 set center {0 0};#[geo::between $nw $se 0.5]
318 set northeast [geo::+ $center $vne]
320 set southwest [geo::- $center $vne]
359 center [diagram::point at {*}$center]]
405 center [diagram::point at $xns $yew] \
423 HandleText $canvas $attributes items [dict get $corners center]
452 center [diagra
[all...]

Completed in 227 milliseconds

1234567891011>>