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

12345678

/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGSubpathData.h47 subpathFinder->m_lastPoint = subpathFinder->m_movePoint = element->points[0];
52 if (subpathFinder->m_lastPoint != element->points[0]) {
54 subpathFinder->m_lastPoint = element->points[0];
59 if (subpathFinder->m_lastPoint != element->points[0] || element->points[0] != element->points[1]) {
61 subpathFinder->m_lastPoint = element->points[1];
66 if (subpathFinder->m_lastPoint != element->points[0] || element->points[0] != element->points[
[all...]
H A DSVGMarkerData.h64 markerData->updateOutslope(element->points[0]);
116 FloatPoint* points = element->points; local
121 m_origin = points[1];
124 m_inslopePoints[0] = points[1];
125 m_inslopePoints[1] = points[2];
126 m_origin = points[2];
129 m_subpathStart = points[0];
131 updateInslope(points[0]);
132 m_origin = points[
[all...]
/macosx-10.9.5/tcl-102/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.9.5/tcl-102/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.9.5/Heimdal-323.92.1/lib/kafs/
H A Dafsl.exp3 * This mumbo jumbo creates entry points to syscalls in _AIX
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPolygonElement.idl33 readonly attribute SVGPointList points;
H A DSVGPolylineElement.idl33 readonly attribute SVGPointList points;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/efl/
H A DNativeWebTouchEventEfl.cpp35 NativeWebTouchEvent::NativeWebTouchEvent(Ewk_Touch_Event_Type type, const Eina_List* points, const Evas_Modifier* modifiers, const WebCore::AffineTransform& toWebContent, const WebCore::AffineTransform& toDeviceScreen, double timestamp) argument
36 : WebTouchEvent(WebEventFactory::createWebTouchEvent(type, points, modifiers, toWebContent, toDeviceScreen, timestamp))
/macosx-10.9.5/emacs-92/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.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_touch_event_private.h35 WebCore::PlatformTouchEvent platformTouchEvent(Evas_Coord x, Evas_Coord y, Eina_List* points, Ewk_Touch_Event_Type action, unsigned modifiers);
H A Dewk_touch_event.cpp48 WebKitPlatformTouchEvent(const Eina_List* points, const WebCore::IntPoint& pos, Ewk_Touch_Event_Type action, unsigned modifiers) argument
81 EINA_LIST_FOREACH(points, list, item) {
91 WebCore::PlatformTouchEvent platformTouchEvent(Evas_Coord x, Evas_Coord y, Eina_List* points, Ewk_Touch_Event_Type action, unsigned modifiers) argument
93 return WebKitPlatformTouchEvent(points, WebCore::IntPoint(x, y), action, modifiers);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CIBevelSample/
H A DCIBevelView.rb16 @points = []
17 @points << CGPoint.new(0.5 * frameRect.size.width, frameRect.size.height - 100.0)
18 @points << CGPoint.new(150.0, 100.0)
19 @points << CGPoint.new(frameRect.size.width - 150.0, 100.0)
20 @points << CGPoint.new(0.7 * @points[0].x + 0.3 * @points[2].x, 0.7 * @points[0].y + 0.3 * @points[2].y)
54 point = @points[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cg/
H A DPathCG.cpp111 CGPoint* points = element->points; local
117 CGPathMoveToPoint(path, 0, points[0].x, points[0].y);
120 CGPathAddLineToPoint(path, 0, points[0].x, points[0].y);
123 CGPathAddQuadCurveToPoint(path, 0, points[0].x, points[0].y, points[1].x, points[
334 FloatPoint points[3]; local
[all...]
/macosx-10.9.5/tcl-102/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.9.5/tcl-102/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.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqwebkittest.cpp58 bool QWebKitTest::sendTouchEvent(QQuickWebView* window, QEvent::Type type, const QList<QTouchEvent::TouchPoint>& points, ulong timestamp) argument
70 foreach (const QTouchEvent::TouchPoint& touchPoint, points)
73 QTouchEvent event(type, device, Qt::NoModifier, touchPointStates, points);
94 QList<QTouchEvent::TouchPoint> points; local
95 points.append(touchPoint(x, y));
97 points[0].setState(Qt::TouchPointPressed);
98 sendTouchEvent(window, QEvent::TouchBegin, points, QDateTime::currentMSecsSinceEpoch());
100 points[0].setState(Qt::TouchPointReleased);
101 sendTouchEvent(window, QEvent::TouchEnd, points, QDateTime::currentMSecsSinceEpoch());
/macosx-10.9.5/pyobjc-42/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.9.5/pyobjc-42/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.9.5/WebCore-7537.78.1/rendering/
H A DRenderDetailsMarker.cpp50 FloatPoint points[4] = { FloatPoint(0.0f, 0.07f), FloatPoint(0.5f, 0.93f), FloatPoint(1.0f, 0.07f), FloatPoint(0.0f, 0.07f) }; local
51 return createPath(points);
56 FloatPoint points[4] = { FloatPoint(0.0f, 0.93f), FloatPoint(0.5f, 0.07f), FloatPoint(1.0f, 0.93f), FloatPoint(0.0f, 0.93f) }; local
57 return createPath(points);
62 FloatPoint points[4] = { FloatPoint(1.0f, 0.0f), FloatPoint(0.14f, 0.5f), FloatPoint(1.0f, 1.0f), FloatPoint(1.0f, 0.0f) }; local
63 return createPath(points);
68 FloatPoint points[4] = { FloatPoint(0.0f, 0.0f), FloatPoint(0.86f, 0.5f), FloatPoint(0.0f, 1.0f), FloatPoint(0.0f, 0.0f) }; local
69 return createPath(points);

Completed in 362 milliseconds

12345678