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

123456789

/external/skia/src/svg/
H A DSkSVGLinearGradient.cpp31 SkString points; local
32 points.appendUnichar('[');
33 points.append(f_x1);
34 points.appendUnichar(',');
35 points.append(f_y1);
36 points.appendUnichar(',');
37 points.append(f_x2);
38 points.appendUnichar(',');
39 points.append(f_y2);
40 points
[all...]
H A DSkSVGPolygon.cpp16 SVG_ATTRIBUTE(points)
29 SVG_ADD_ATTRIBUTE(points);
/external/webkit/Source/WebCore/svg/
H A DSVGPolygonElement.cpp44 SVGPointList& points = pointList(); local
45 if (points.isEmpty())
48 path.moveTo(points.first());
50 unsigned size = points.size();
52 path.addLineTo(points.at(i));
H A DSVGPolylineElement.cpp44 SVGPointList& points = pointList(); local
45 if (points.isEmpty())
48 path.moveTo(points.first());
50 unsigned size = points.size();
52 path.addLineTo(points.at(i));
H A DSVGPolygonElement.idl34 readonly attribute SVGPointList points;
H A DSVGPolylineElement.idl34 readonly attribute SVGPointList points;
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DHullCollisionShape.java18 private float[] points; field in class:HullCollisionShape
24 this.points = getPoints(mesh);
25 createShape(this.points);
28 public HullCollisionShape(float[] points) { argument
29 this.points = points;
30 createShape(this.points);
38 capsule.write(points, "points", null);
49 this.points
57 createShape(float[] points) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
H A DSkeletonDebugger.java43 private SkeletonPoints points; field in class:SkeletonDebugger
51 points = new SkeletonPoints(skeleton);
54 attachChild(new Geometry(name+"_points", points));
68 points.updateGeometry();
72 return points;
H A DWireFrustum.java44 public WireFrustum(Vector3f[] points){ argument
45 if (points != null)
46 setBuffer(Type.Position, 3, BufferUtils.createFloatBuffer(points));
69 public void update(Vector3f[] points){ argument
72 setBuffer(Type.Position, 3, BufferUtils.createFloatBuffer(points));
76 FloatBuffer b = BufferUtils.createFloatBuffer(points);
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGMarkerData.h91 FloatPoint* points = element->points; local
96 m_origin = points[1];
99 m_inslopePoints[0] = points[1];
100 m_inslopePoints[1] = points[2];
101 m_origin = points[2];
104 m_subpathStart = points[0];
106 updateInslope(points[0]);
107 m_origin = points[0];
110 updateInslope(points[
[all...]
/external/skia/src/animator/
H A DSkParseSVGPath.cpp31 //define our points
119 SkPoint points[3]; local
144 data = find_points(data, points, 1, relative, &c);
145 fPath.moveTo(points[0]);
147 c = points[0];
150 data = find_points(data, points, 1, relative, &c);
151 fPath.lineTo(points[0]);
152 c = points[0];
169 data = find_points(data, points, 3, relative, &c);
172 data = find_points(data, &points[
[all...]
/external/skia/tests/
H A DPathCoverageTest.cpp26 // For determining the maximum possible number of points to use in
39 static inline int estimate_distance(const SkPoint points[]) { argument
40 return cheap_distance(points[1].fX * 2 - points[2].fX - points[0].fX,
41 points[1].fY * 2 - points[2].fY - points[0].fY);
44 static inline SkScalar compute_distance(const SkPoint points[]) { argument
45 return points[
69 quadraticPointCount_EE(const SkPoint points[], SkScalar tol) argument
74 quadraticPointCount_EC(const SkPoint points[], SkScalar tol) argument
79 quadraticPointCount_CE(const SkPoint points[], SkScalar tol) argument
84 quadraticPointCount_CC(const SkPoint points[], SkScalar tol) argument
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DHullCollisionShape.java18 private float[] points; field in class:HullCollisionShape
25 this.points = getPoints(mesh);
29 public HullCollisionShape(float[] points) { argument
30 this.points = points;
39 capsule.write(points, "points", null);
50 this.points = getPoints(mesh);
52 this.points = capsule.readFloatArray("points", nul
84 createShape(ByteBuffer points) argument
[all...]
/external/skia/src/utils/
H A DSkParsePath.cpp75 SkPoint points[3]; local
101 data = find_points(data, points, 1, relative, &c);
102 path.moveTo(points[0]);
104 c = points[0];
107 data = find_points(data, points, 1, relative, &c);
108 path.lineTo(points[0]);
109 c = points[0];
124 data = find_points(data, points, 3, relative, &c);
127 data = find_points(data, &points[1], 2, relative, &c);
128 points[
[all...]
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPathCG.cpp94 CGPoint* points = element->points; local
100 CGPathMoveToPoint(path, 0, points[0].x, points[0].y);
103 CGPathAddLineToPoint(path, 0, points[0].x, points[0].y);
106 CGPathAddQuadCurveToPoint(path, 0, points[0].x, points[0].y, points[1].x, points[
268 FloatPoint points[3]; local
[all...]
/external/skia/src/gpu/
H A DGrPathUtils.h32 uint32_t quadraticPointCount(const GrPoint points[], GrScalar tol);
37 GrPoint** points,
41 uint32_t cubicPointCount(const GrPoint points[], GrScalar tol);
47 GrPoint** points,
55 // result is sets of 3 points in quads (TODO: share endpoints in returned
H A DGrPathUtils.cpp40 uint32_t GrPathUtils::quadraticPointCount(const GrPoint points[], argument
47 GrScalar d = points[1].distanceToLineSegmentBetween(points[0], points[2]);
53 // points.
71 GrPoint** points,
75 (*points)[0] = p2;
76 *points += 1;
87 uint32_t a = generateQuadraticPoints(p0, q[0], r, tolSqd, points, pointsLeft);
88 uint32_t b = generateQuadraticPoints(r, q[1], p2, tolSqd, points, pointsLef
67 generateQuadraticPoints(const GrPoint& p0, const GrPoint& p1, const GrPoint& p2, GrScalar tolSqd, GrPoint** points, uint32_t pointsLeft) argument
92 cubicPointCount(const GrPoint points[], GrScalar tol) argument
118 generateCubicPoints(const GrPoint& p0, const GrPoint& p1, const GrPoint& p2, const GrPoint& p3, GrScalar tolSqd, GrPoint** points, uint32_t pointsLeft) argument
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Drounded_window.cc56 // Returns a list of points that either form the outline of the status bubble
66 std::vector<GdkPoint> points; local
69 // If we have a stroke, we have to offset some of our points by 1 pixel.
79 // Build up points starting with the bottom left corner and continuing
87 // We are careful to only add points that are horizontal or vertically
89 // differences when two points are connected.
94 points.push_back(MakeBidiGdkPoint(
98 points.push_back(MakeBidiGdkPoint(
103 points.push_back(MakeBidiGdkPoint(
105 points
229 std::vector<GdkPoint> points = MakeFramePolygonPoints( local
[all...]
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp65 // points - convex hull vertices ( any orientation )
70 // left, bottom, right, top - indexes of extremal points
72 // In case CV_CALIPERS_MAXDIST it points to float value -
93 icvRotatingCalipers( CvPoint2D32f* points, int n, int mode, float* out ) argument
113 CvPoint2D32f pt0 = points[0];
134 CvPoint2D32f pt = points[(i+1) & (i+1 < n ? -1 : 0)];
250 float dx = points[seq[opposite_el]].x - points[seq[main_element]].x;
251 float dy = points[seq[opposite_el]].y - points[se
352 CvPoint2D32f* points = 0; local
[all...]
H A Dcvlinefit.cpp46 icvFitLine2D_wods( CvPoint2D32f * points, int _count, float *weights, float *line ) argument
60 x += points[i].x;
61 y += points[i].y;
62 x2 += points[i].x * points[i].x;
63 y2 += points[i].y * points[i].y;
64 xy += points[i].x * points[i].y;
72 x += weights[i] * points[
102 icvFitLine3D_wods( CvPoint3D32f * points, int count, float *weights, float *line ) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/
H A DShadowCamera.java47 private Vector3f[] points = new Vector3f[8]; field in class:ShadowCamera
52 for (int i = 0; i < points.length; i++) {
53 points[i] = new Vector3f();
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformTouchEventQt.cpp38 const QList<QTouchEvent::TouchPoint>& points = event->touchPoints(); local
39 for (int i = 0; i < points.count(); ++i)
40 m_touchPoints.append(PlatformTouchPoint(points.at(i)));
/external/valgrind/main/memcheck/tests/
H A Dexecve1.stderr.exp1 Syscall param execve(filename) points to unaddressable byte(s)
6 Syscall param execve(argv[i]) points to unaddressable byte(s)
11 Syscall param execve(envp[i]) points to unaddressable byte(s)
H A Dexecve2.stderr.exp1 Syscall param execve(filename) points to unaddressable byte(s)
H A Dbuflen_check.stderr.exp1 Syscall param socketcall.getsockname(name) points to unaddressable byte(s)
6 Syscall param socketcall.getsockname(namelen_in) points to unaddressable byte(s)

Completed in 1740 milliseconds

123456789