HomeSort by relevance Sort by last modified time
    Searched defs:points (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/skia/src/svg/
SkSVGLinearGradient.cpp 39 SkString points; local
40 points.appendUnichar('[');
41 points.append(f_x1);
42 points.appendUnichar(',');
43 points.append(f_y1);
44 points.appendUnichar(',');
45 points.append(f_x2);
46 points.appendUnichar(',');
47 points.append(f_y2);
48 points.appendUnichar(']')
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
PlatformTouchEventQt.cpp 38 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/webkit/Source/WebCore/svg/
SVGPolygonElement.cpp 44 SVGPointList& points = pointList(); local
45 if (points.isEmpty())
48 path.moveTo(points.first());
50 unsigned size = points.size();
52 path.addLineTo(points.at(i));
SVGPolylineElement.cpp 44 SVGPointList& points = pointList(); local
45 if (points.isEmpty())
48 path.moveTo(points.first());
50 unsigned size = points.size();
52 path.addLineTo(points.at(i));
SVGPolyElement.cpp 51 document()->accessSVGExtensions()->reportError("Problem parsing points=\"" + value + "\"");
131 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::points() function in class:WebCore::SVGPolyElement
  /development/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/
FountainRS.java 41 ScriptField_Point points = new ScriptField_Point(mRS, PART_COUNT);// local
45 smb.addVertexAllocation(points.getAllocation());
51 mScript.bind_point(points);
  /development/samples/RenderScript/FountainFbo/src/com/example/android/rs/fountainfbo/
FountainFboRS.java 44 ScriptField_Point points = new ScriptField_Point(mRS, PART_COUNT); local
47 smb.addVertexAllocation(points.getAllocation());
53 mScript.bind_point(points);
  /external/skia/src/animator/
SkDrawGradient.h 56 SkTDScalarArray points; member in class:SkLinearGradient
SkDrawPath.h 65 SkTDScalarArray points; member in class:SkPolyline
  /external/webkit/Source/WebCore/platform/graphics/
Path.cpp 50 FloatPoint* points = element->points; local
54 segmentLength = traversalState.moveTo(points[0]);
57 segmentLength = traversalState.lineTo(points[0]);
60 segmentLength = traversalState.quadraticBezierTo(points[0], points[1]);
63 segmentLength = traversalState.cubicBezierTo(points[0], points[1], points[2]);
Path.h 99 FloatPoint* points; member in struct:WebCore::PathElement
  /external/webkit/Source/WebCore/rendering/
RenderDetailsMarker.cpp 56 FloatPoint points[4] = { FloatPoint(0.0f, 0.07f), FloatPoint(0.5f, 0.93f), FloatPoint(1.0f, 0.07f), FloatPoint(0.0f, 0.07f) }; local
57 return createPath(points);
62 FloatPoint points[4] = { FloatPoint(0.0f, 0.93f), FloatPoint(0.5f, 0.07f), FloatPoint(1.0f, 0.93f), FloatPoint(0.0f, 0.93f) }; local
63 return createPath(points);
68 FloatPoint points[4] = { FloatPoint(1.0f, 0.0f), FloatPoint(0.14f, 0.5f), FloatPoint(1.0f, 1.0f), FloatPoint(1.0f, 0.0f) }; local
69 return createPath(points);
74 FloatPoint points[4] = { FloatPoint(0.0f, 0.0f), FloatPoint(0.86f, 0.5f), FloatPoint(0.0f, 1.0f), FloatPoint(0.0f, 0.0f) }; local
75 return createPath(points);
  /packages/apps/Camera/tests/src/com/android/camera/unittest/
CameraTest.java 78 float[] points; local
82 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
84 matrix.mapPoints(points);
85 assertEquals(expected, points);
88 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
90 matrix.mapPoints(points);
91 assertEquals(expected, points);
94 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
96 matrix.mapPoints(points);
97 assertEquals(expected, points);
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
InvertedChartAxis.java 61 final float[] points = mWrapped.getTickPoints(); local
62 for (int i = 0; i < points.length; i++) {
63 points[i] = mSize - points[i];
65 return points;
  /system/media/mca/filterfw/native/core/
geometry.h 64 const std::vector<Point>& points() const { return points_; } function in class:android::filterfw::Quad
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
Doodle.java 37 private final Vector<PointF> points = new Vector<PointF>(); field in class:Doodle
54 points.add(startPoint);
58 * Adds control points whose coordinates range from 0 to 1 to construct the doodle path.
63 PointF last = points.lastElement();
65 points.add(point);
96 dest.writeInt(points.size());
97 for (PointF point : points) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 176 List<Point> points = new ArrayList<Point>(); local
177 points.add(fromCenter);
185 points.add(toCenter);
191 points.add(toCenter);
198 points.add(fromCenter);
199 points.add(points.get(0));
201 for (int i = 1, n = points.size(); i < n; i++) {
202 gc.drawLine(points.get(i-1), points.get(i))
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGMarkerData.h 91 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[0])
    [all...]
  /frameworks/base/libs/hwui/
GradientCache.cpp 126 SkPoint points[2]; local
127 points[0].set(0.0f, 0.0f);
128 points[1].set(bitmap.width(), 0.0f);
130 SkShader* localShader = SkGradientShader::CreateLinear(points,
  /sdk/chimpchat/test/com/android/chimpchat/adb/
LinearInterpolatorTest.java 31 private final List<LinearInterpolator.Point> points = Lists.newArrayList(); field in class:LinearInterpolatorTest.Collector
34 return points;
38 points.add(input);
42 points.add(input);
46 points.add(input);
62 List<LinearInterpolator.Point> points = collector.getPoints(); local
63 assertEquals(11, points.size());
64 for (int x = 0; x < points.size(); x++) {
65 assertEquals(new Point(STEP_POINTS.get(x), 100), points.get(x));
76 List<LinearInterpolator.Point> points = collector.getPoints() local
90 List<LinearInterpolator.Point> points = collector.getPoints(); local
104 List<LinearInterpolator.Point> points = collector.getPoints(); local
118 List<LinearInterpolator.Point> points = collector.getPoints(); local
132 List<LinearInterpolator.Point> points = collector.getPoints(); local
    [all...]
  /system/media/mca/filterpacks/base/native/
geometry.h 64 const std::vector<Point>& points() const { return points_; } function in class:android::filterfw::Quad
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 216 private void generateSpiral(ScriptField_VertexColor_s points, float depth, float radius,
220 int size = points.getAllocation().getType().getX();
241 points.set_position(i, position, false);
242 points.set_color(i, color, false);
249 points.copyAll();
  /external/chromium/chrome/browser/ui/gtk/
rounded_window.cc 56 // 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.push_back(MakeBidiGdkPoint
229 std::vector<GdkPoint> points = MakeFramePolygonPoints( local
    [all...]
  /external/freetype/src/autofit/
afwarp.c 169 AF_Point points; local
202 points = hints->points;
213 X1 = X2 = points[0].fx;
216 FT_Int X = points[nn].fx;
  /external/freetype/src/smooth/
ftsmooth.c 258 FT_Vector* points = outline->points; local
259 FT_Vector* points_end = points + outline->n_points;
264 for ( vec = points; vec < points_end; vec++ )
268 for ( vec = points; vec < points_end; vec++ )
277 FT_Vector* points = outline->points; local
278 FT_Vector* points_end = points + outline->n_points;
283 for ( vec = points; vec < points_end; vec++ )
287 for ( vec = points; vec < points_end; vec++
    [all...]

Completed in 1593 milliseconds

1 2 3 4