Searched refs:points (Results 26 - 50 of 182) sorted by relevance

12345678

/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/ckutils/atomTime/
H A DatomTime.c113 * Assumes the presence of numEllPoints items in *points, and that the
115 * coords as seeds to make normalized points of the entire *points array.
117 static void makePoints(pointProjStruct *points, argument
125 gtog(points[i].x, seed);
126 findPointProj(&points[i], seed, cp);
162 pointProjStruct *points; local
235 * Projective points - two per ellLoop. The giants come from
239 points = fmalloc(numEllPoints * sizeof(pointProjStruct));
240 if(points
[all...]
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkClassicTheme.c235 XPoint points[3]; local
249 points[2].x = b.x; points[2].y = b.y + size;
250 points[1].x = b.x + size/2; points[1].y = b.y;
251 points[0].x = b.x + size; points[0].y = b.y + size;
254 points[0].x = b.x; points[0].y = b.y;
255 points[
[all...]
H A DttkDefaultTheme.c70 XPoint points[3]; local
74 points[0].x = x; points[0].y = y+height;
75 points[1].x = x+width*corner; points[1].y = y+height*corner;
76 points[2].x = x+width; points[2].y = y;
83 XDrawLines(Tk_Display(tkwin), d, gc, points, 3, CoordModeOrigin); local
141 * Compute points of arrow polygon.
143 static void ArrowPoints(Ttk_Box b, ArrowDirection dir, XPoint points[ argument
209 XPoint points[4]; local
219 XPoint points[4]; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGPathData.cpp85 SVGPointList& points = polygon->pointList(); local
86 if (points.isEmpty())
89 path.moveTo(points.first());
91 unsigned size = points.size();
93 path.addLineTo(points.at(i));
103 SVGPointList& points = polyline->pointList(); local
104 if (points.isEmpty())
107 path.moveTo(points.first());
109 unsigned size = points.size();
111 path.addLineTo(points
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/unix/
H A DtkUnixMenu.c504 XPoint points[3];
520 points[0].x = x + width - borderWidth - activeBorderWidth
522 points[0].y = y + (height - CASCADE_ARROW_HEIGHT)/2;
523 points[1].x = points[0].x;
524 points[1].y = points[0].y + CASCADE_ARROW_HEIGHT;
525 points[2].x = points[0].x + CASCADE_ARROW_WIDTH;
526 points[
493 XPoint points[3]; local
602 XPoint points[4]; local
660 XPoint points[2]; local
1229 XPoint points[2]; local
[all...]
H A DtkUnixButton.c435 XPoint points[4];
439 points[0].x = x - butPtr->indicatorSpace;
440 points[0].y = y;
441 points[1].x = points[0].x + radius;
442 points[1].y = points[0].y + radius;
443 points[2].x = points[1].x + radius;
444 points[
433 XPoint points[4]; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSBasicShapes.cpp192 static String buildPolygonString(const WindRule& windRule, const Vector<String>& points) argument
194 ASSERT(!(points.size() % 2));
204 for (size_t i = 0; i < points.size(); i += 2) {
208 length += points[i].length() + 1 + points[i + 1].length();
217 for (size_t i = 0; i < points.size(); i += 2) {
220 result.append(points[i]);
222 result.append(points[i + 1]);
232 Vector<String> points; local
233 points
253 Vector<String> points; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DPath.cpp47 FloatPoint* points = element->points;
51 segmentLength = traversalState.moveTo(points[0]);
54 segmentLength = traversalState.lineTo(points[0]);
57 segmentLength = traversalState.quadraticBezierTo(points[0], points[1]);
60 segmentLength = traversalState.cubicBezierTo(points[0], points[1], points[2]);
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/canvas/
H A Dosm.tcl19 ## canvas. Adding points is with <1>, bound to the canvas
33 ## in the middle works. No moving points, yet.
72 ## -- Mark, save, load series of points (gps tracks, own tracks).
73 ## Name point series. Name individual points (location marks).
379 set points {} ; # way-points loaded list (list (lat lon comment))
397 global points
399 foreach p $points {
462 global points
463 lappend points [lis
[all...]
/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Dbootgamma.c43 endIn = channelGamma->points[seg].in;
44 endOut = channelGamma->points[seg].out;
51 channelGamma = (typeof(channelGamma)) &channelGamma->points[channelGamma->pointCount];
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeMarquee.c309 XPoint points[5];
343 points[0].x = rect.x, points[0].y = rect.y;
344 points[1].x = rect.x + rect.width - 1, points[1].y = rect.y;
345 points[2].x = rect.x + rect.width - 1, points[2].y = rect.y + rect.height - 1;
346 points[3].x = rect.x, points[3].y = rect.y + rect.height - 1;
347 points[
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dpendulum.rb101 @points = []
174 @points << @theta + @psw << -20*@dTheta + @psh
175 if @points.length > 100
176 @points = @points[-100..-1]
183 lst = @points[first..last]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dpendulum.rb103 @points = []
176 @points << @theta + @psw << -20*@dTheta + @psh
177 if @points.length > 100
178 @points = @points[-100..-1]
185 lst = @points[first..last]
/macosx-10.9.5/tcl-102/tk/tk/unix/
H A DtkUnixMenu.c507 XPoint points[3];
523 points[0].x = x + width - borderWidth - activeBorderWidth
525 points[0].y = y + (height - CASCADE_ARROW_HEIGHT)/2;
526 points[1].x = points[0].x;
527 points[1].y = points[0].y + CASCADE_ARROW_HEIGHT;
528 points[2].x = points[0].x + CASCADE_ARROW_WIDTH;
529 points[
496 XPoint points[3]; local
638 XPoint points[2]; local
1188 XPoint points[2]; local
[all...]
/macosx-10.9.5/groff-38/groff/src/devices/grolbp/
H A Dlbp.h316 vdmpolyline(int numpoints, int *points) argument
318 int i,*p = points;
333 vdmpolygon(int numpoints, int *points) argument
335 int i,*p = points;
363 int points[4]; local
365 points[0] = startx;
366 points[1] = starty;
367 points[2] = sizex;
368 points[3] = sizey;
370 vdmpolyline(2,points);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperBase.mm264 CGPoint newPoint = [wrapper convertPointToScreenSpace:element->points[0]];
270 CGPoint newPoint = [wrapper convertPointToScreenSpace:element->points[0]];
276 CGPoint newPoint1 = [wrapper convertPointToScreenSpace:element->points[0]];
277 CGPoint newPoint2 = [wrapper convertPointToScreenSpace:element->points[1]];
283 CGPoint newPoint1 = [wrapper convertPointToScreenSpace:element->points[0]];
284 CGPoint newPoint2 = [wrapper convertPointToScreenSpace:element->points[1]];
285 CGPoint newPoint3 = [wrapper convertPointToScreenSpace:element->points[2]];
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dfax2ps.c51 const float points = 72.0; variable
237 (int)(pageWidth * points), (int)(pageHeight * points)); /* XXX */
253 points * (pageWidth - scale*w/xres) * half,
254 points * (scale*h/yres + (pageHeight - scale*h/yres) * half));
255 printf("%g %g scale\n", points/xres*scale, -points/yres*scale);
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dpendulum.tcl60 set points {}
96 global Theta dTheta points psw psh
97 lappend points [expr {$Theta+$psw}] [expr {-20*$dTheta+$psh}]
98 if {[llength $points] > 100} {
99 set points [lrange $points end-99 end]
102 set list [lrange $points end-[expr {$i-1}] end-[expr {$i-12}]]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DLEFontInstance.cpp115 void LEFontInstance::unitsToPoints(LEPoint &units, LEPoint &points) const
117 points.fX = xUnitsToPoints(units.fX);
118 points.fY = yUnitsToPoints(units.fY);
/macosx-10.9.5/emacs-92/emacs/lwlib/
H A Dxlwmenu.c654 XPoint points [4];
664 points [0].x = x;
665 points [0].y = y;
666 points [1].x = x + width;
667 points [1].y = y;
668 points [2].x = x + width - thickness;
669 points [2].y = y + thickness;
670 points [3].x = x;
671 points [3].y = y + thickness;
672 XFillPolygon (dpy, window, top_gc, points,
651 XPoint points [4]; local
715 XPoint points [4]; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DPathQt.cpp82 // null border doesn't contain points
92 // Once we know that the points are collinear we
211 // The points p0, p1, and p2 are on the same straight line (HTML5, 4.8.11.1.8)
364 FloatPoint points[3]; local
365 pelement.points = points;
372 pelement.points[0] = QPointF(cur);
377 pelement.points[0] = QPointF(cur);
389 pelement.points[0] = QPointF(cur);
390 pelement.points[
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleTextImpl.cpp108 POINT points[1]; local
109 points[0].x = boundingRect.x();
110 points[0].y = boundingRect.y();
111 MapWindowPoints(m_window, 0, points, 1);
112 *x = points[0].x;
113 *y = points[0].y;
150 POINT points[1]; local
151 points[0].x = x;
152 points[0].y = y;
153 MapWindowPoints(0, m_window, points,
505 POINT points[1]; local
[all...]
/macosx-10.9.5/tcl-102/tk/tk/win/
H A DtkWinDraw.c106 typedef BOOL (CALLBACK *WinDrawFunc)(HDC dc, CONST POINT* points, int npoints);
109 POINT *winPoints; /* Array of points that is reused. */
118 static POINT * ConvertPoints(XPoint *points, int npoints, int mode,
124 static void RenderObject(HDC dc, GC gc, XPoint* points,
220 * Convert an array of X points to an array of Win32 points.
234 XPoint *points,
237 RECT *bbox) /* Bounding box of points. */
260 bbox->left = bbox->right = points[0].x;
261 bbox->top = bbox->bottom = points[
230 ConvertPoints( XPoint *points, int npoints, int mode, RECT *bbox) argument
740 RenderObject( HDC dc, GC gc, XPoint *points, int npoints, int mode, HPEN pen, WinDrawFunc func) argument
870 XDrawLines( Display *display, Drawable d, GC gc, XPoint *points, int npoints, int mode) argument
913 XFillPolygon( Display *display, Drawable d, GC gc, XPoint *points, int npoints, int shape, int mode) argument
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/win/
H A DtkWinDraw.c107 CONST POINT* points, int npoints));
110 POINT *winPoints; /* Array of points that is reused. */
119 static POINT * ConvertPoints _ANSI_ARGS_((XPoint *points, int npoints,
126 XPoint* points, int npoints, int mode, HPEN pen,
221 * Convert an array of X points to an array of Win32 points.
234 ConvertPoints(points, npoints, mode, bbox)
235 XPoint *points;
238 RECT *bbox; /* Bounding box of points. */
261 bbox->left = bbox->right = points[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPolyElement.h40 SVGListPropertyTearOff<SVGPointList>* points();
60 // Custom 'points' property

Completed in 244 milliseconds

12345678