Searched refs:points (Results 1 - 25 of 175) sorted by relevance

1234567

/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DSVGSubpathData.h46 subpathFinder->m_lastPoint = subpathFinder->m_movePoint = element->points[0];
51 if (subpathFinder->m_lastPoint != element->points[0]) {
53 subpathFinder->m_lastPoint = element->points[0];
58 if (subpathFinder->m_lastPoint != element->points[0] || element->points[0] != element->points[1]) {
60 subpathFinder->m_lastPoint = element->points[1];
65 if (subpathFinder->m_lastPoint != element->points[0] || element->points[0] != element->points[
[all...]
H A DSVGMarkerData.h62 markerData->updateOutslope(element->points[0]);
114 FloatPoint* points = element->points; local
119 m_origin = points[1];
122 m_inslopePoints[0] = points[1];
123 m_inslopePoints[1] = points[2];
124 m_origin = points[2];
127 m_subpathStart = points[0];
130 updateInslope(points[0]);
131 m_origin = points[
[all...]
/macosx-10.10/tcl-105/tk/tk/xlib/
H A Dxdraw.c22 * Draw a single line between two points in a given drawable.
41 XPoint points[2];
43 points[0].x = x1;
44 points[0].y = y1;
45 points[1].x = x2;
46 points[1].y = y2;
47 XDrawLines(display, d, gc, points, 2, CoordModeOrigin);
40 XPoint points[2]; local
/macosx-10.10/tcl-105/tk84/tk/xlib/
H A Dxdraw.c23 * Draw a single line between two points in a given drawable.
41 XPoint points[2];
43 points[0].x = x1;
44 points[0].y = y1;
45 points[1].x = x2;
46 points[1].y = y2;
47 XDrawLines(display, d, gc, points, 2, CoordModeOrigin);
40 XPoint points[2]; local
/macosx-10.10/Heimdal-398.1.2/lib/kafs/
H A Dafsl.exp3 * This mumbo jumbo creates entry points to syscalls in _AIX
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGPolygonElement.idl27 readonly attribute SVGPointList points;
H A DSVGPolylineElement.idl27 readonly attribute SVGPointList points;
/macosx-10.10/emacs-93/emacs/lisp/
H A Dpcmpl-linux.el83 (let (points)
90 (setq points (cons (nth 1 args) points)))
92 (pcomplete-uniqify-list points))))
96 (let (points)
103 (setq points (cons (nth 1 args) points)))
106 (pcomplete-uniqify-list points)
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIBevelSample/
H A DCIBevelView.py14 points = objc.ivar() variable in class:CIBevelView
27 self.points = [ None ] * NUM_POINTS
28 self.points[0] = CGPointMake(0.5 * frameRect.size.width, frameRect.size.height - 100.0)
29 self.points[1] = CGPointMake(150.0, 100.0)
30 self.points[2] = CGPointMake(frameRect.size.width - 150.0, 100.0)
31 self.points[3] = CGPointMake(0.7*self.points[0].x + 0.3*self.points[2].x, 0.7*self.points[0].y + 0.3*self.points[
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIBevelSample/
H A DCIBevelView.py14 points = objc.ivar() variable in class:CIBevelView
27 self.points = [ None ] * NUM_POINTS
28 self.points[0] = CGPointMake(0.5 * frameRect.size.width, frameRect.size.height - 100.0)
29 self.points[1] = CGPointMake(150.0, 100.0)
30 self.points[2] = CGPointMake(frameRect.size.width - 150.0, 100.0)
31 self.points[3] = CGPointMake(0.7*self.points[0].x + 0.3*self.points[2].x, 0.7*self.points[0].y + 0.3*self.points[
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Core Image/CIBevelSample/
H A DCIBevelView.py14 points = objc.ivar() variable in class:CIBevelView
27 self.points = [ None ] * NUM_POINTS
28 self.points[0] = CGPointMake(0.5 * frameRect.size.width, frameRect.size.height - 100.0)
29 self.points[1] = CGPointMake(150.0, 100.0)
30 self.points[2] = CGPointMake(frameRect.size.width - 150.0, 100.0)
31 self.points[3] = CGPointMake(0.7*self.points[0].x + 0.3*self.points[2].x, 0.7*self.points[0].y + 0.3*self.points[
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dguitest_graphics.py55 self.points = (
65 def makeArray(self, points):
67 a = array.array('f', len(points) * [0, 0, 0, 0])
68 for i in range(len(points)):
69 p = points[i]
77 def assertImagePoints(self, image, points):
80 specified locations points is sequence of NSRect values.
90 # Check black points
91 for ((x, y), (h, w)) in points:
100 # And white points
[all...]
H A Dtest_nsbezierpath.py31 points = [ (0, 0), (100, 0), (100, 100), (0, 0) ]
32 p.appendBezierPathWithPoints_count_(points, 3)
67 tp, points = p.elementAtIndex_associatedPoints_(0)
69 self.assertEquals(len(points), 1)
70 self.assertPointEquals(points[0], (10, 10))
72 tp, points = p.elementAtIndex_associatedPoints_(1)
74 self.assertEquals(len(points), 1)
75 self.assertPointEquals(points[0], (20, 30))
77 tp, points = p.elementAtIndex_associatedPoints_(2)
79 self.assertEquals(len(points),
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dguitest_graphics.py55 self.points = (
65 def makeArray(self, points):
71 a = array.array(code, len(points) * [0, 0, 0, 0])
72 for i in range(len(points)):
73 p = points[i]
81 def assertImagePoints(self, image, points):
84 specified locations points is sequence of NSRect values.
94 # Check black points
95 for ((x, y), (h, w)) in points:
104 # And white points
[all...]
H A Dtest_nsbezierpath.py31 points = [ (0, 0), (100, 0), (100, 100), (0, 0) ]
32 p.appendBezierPathWithPoints_count_(points, 3)
67 tp, points = p.elementAtIndex_associatedPoints_(0)
69 self.assertEqual(len(points), 1)
70 self.assertPointEquals(points[0], (10, 10))
72 tp, points = p.elementAtIndex_associatedPoints_(1)
74 self.assertEqual(len(points), 1)
75 self.assertPointEquals(points[0], (20, 30))
77 tp, points = p.elementAtIndex_associatedPoints_(2)
79 self.assertEqual(len(points),
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsbezierpath.py31 points = [ (0, 0), (100, 0), (100, 100), (0, 0) ]
32 p.appendBezierPathWithPoints_count_(points, 3)
67 tp, points = p.elementAtIndex_associatedPoints_(0)
69 self.assertEqual(len(points), 1)
70 self.assertPointEquals(points[0], (10, 10))
72 tp, points = p.elementAtIndex_associatedPoints_(1)
74 self.assertEqual(len(points), 1)
75 self.assertPointEquals(points[0], (20, 30))
77 tp, points = p.elementAtIndex_associatedPoints_(2)
79 self.assertEqual(len(points),
[all...]
H A Dguitest_graphics.py55 self.points = (
65 def makeArray(self, points):
71 a = array.array(code, len(points) * [0, 0, 0, 0])
72 for i in range(len(points)):
73 p = points[i]
81 def assertImagePoints(self, image, points):
84 specified locations points is sequence of NSRect values.
94 # Check black points
104 for ((x, y), (h, w)) in points:
113 # And white points
[all...]
/macosx-10.10/tcl-105/tk/tk/unix/
H A DtkUnixScrlbr.c102 XPoint points[7];
153 * Draw the top or left arrow. The coordinates of the polygon points
169 points[0].x = scrollPtr->inset - 1;
170 points[0].y = scrollPtr->arrowLength + scrollPtr->inset - 1;
171 points[1].x = width + scrollPtr->inset;
172 points[1].y = points[0].y;
173 points[2].x = width/2 + scrollPtr->inset;
174 points[2].y = scrollPtr->inset - 1;
175 Tk_Fill3DPolygon(tkwin, pixmap, border, points,
100 XPoint points[7]; local
[all...]
/macosx-10.10/tcl-105/tk84/tk/unix/
H A DtkUnixScrlbr.c102 XPoint points[7];
154 * points probably seem odd, but they were carefully chosen with
169 points[0].x = scrollPtr->inset - 1;
170 points[0].y = scrollPtr->arrowLength + scrollPtr->inset - 1;
171 points[1].x = width + scrollPtr->inset;
172 points[1].y = points[0].y;
173 points[2].x = width/2 + scrollPtr->inset;
174 points[2].y = scrollPtr->inset - 1;
175 Tk_Fill3DPolygon(tkwin, pixmap, border, points,
100 XPoint points[7]; local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cg/
H A DPathCG.cpp116 CGPoint* points = element->points; local
122 CGPathMoveToPoint(path, 0, points[0].x, points[0].y);
125 CGPathAddLineToPoint(path, 0, points[0].x, points[0].y);
128 CGPathAddQuadCurveToPoint(path, 0, points[0].x, points[0].y, points[1].x, points[
367 FloatPoint points[3]; local
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_AppKit_nsbezierpath.m20 NSPoint points[3];
34 points
45 points);
77 v = PyObjC_CArrayToPython(@encode(NSPoint), points, pointCount);
95 NSPoint points[3];
104 memset(points, 0, sizeof(points));
106 seq = PySequence_Fast(pointList, "points is not a sequence");
120 PySequence_Fast_GET_ITEM(seq, i), points + i);
132 points,
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_AppKit_nsbezierpath.m16 NSPoint points[3];
30 points
41 points);
73 v = PyObjC_CArrayToPython(@encode(NSPoint), points, pointCount);
91 NSPoint points[3];
101 memset(points, 0, sizeof(points));
103 seq = PySequence_Fast(pointList, "points is not a sequence");
117 PySequence_Fast_GET_ITEM(seq, i), points + i);
129 points,
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Modules/
H A D_AppKit_nsbezierpath.m16 NSPoint points[3];
30 points
41 points);
73 v = PyObjC_CArrayToPython(@encode(NSPoint), points, pointCount);
91 NSPoint points[3];
101 memset(points, 0, sizeof(points));
103 seq = PySequence_Fast(pointList, "points is not a sequence");
117 PySequence_Fast_GET_ITEM(seq, i), points + i);
129 points,
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderDetailsMarker.cpp51 FloatPoint points[4] = { FloatPoint(0.0f, 0.07f), FloatPoint(0.5f, 0.93f), FloatPoint(1.0f, 0.07f), FloatPoint(0.0f, 0.07f) }; local
52 return createPath(points);
57 FloatPoint points[4] = { FloatPoint(0.0f, 0.93f), FloatPoint(0.5f, 0.07f), FloatPoint(1.0f, 0.93f), FloatPoint(0.0f, 0.93f) }; local
58 return createPath(points);
63 FloatPoint points[4] = { FloatPoint(1.0f, 0.0f), FloatPoint(0.14f, 0.5f), FloatPoint(1.0f, 1.0f), FloatPoint(1.0f, 0.0f) }; local
64 return createPath(points);
69 FloatPoint points[4] = { FloatPoint(0.0f, 0.0f), FloatPoint(0.86f, 0.5f), FloatPoint(0.0f, 1.0f), FloatPoint(0.0f, 0.0f) }; local
70 return createPath(points);
/macosx-10.10/Security-57031.1.35/Security/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...]

Completed in 289 milliseconds

1234567