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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/skia/src/svg/
SkSVGLinearGradient.cpp 31 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.appendUnichar(']')
    [all...]
  /external/skia/src/svg/
SkSVGLinearGradient.cpp 31 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.appendUnichar(']')
    [all...]
  /external/chromium_org/third_party/flot/
jquery.flot.threshold.min.js 1 (function(B){var A={series:{threshold:null}};function C(D){function E(L,S,M){if(!S.threshold){return }var F=M.pointsize,I,O,N,G,K,H=B.extend({},S);H.datapoints={points:[],pointsize:F};H.label=null;H.color=S.threshold.color;H.threshold=null;H.originSeries=S;H.data=[];var P=S.threshold.below,Q=M.points,R=S.lines.show;threspoints=[];newpoints=[];for(I=0;I<Q.length;I+=F){O=Q[I];N=Q[I+1];K=G;if(N<P){G=threspoints}else{G=newpoints}if(R&&K!=G&&O!=null&&I>0&&Q[I-F]!=null){var J=(O-Q[I-F])/(N-Q[I-F+1])*(P-N)+O;K.push(J);K.push(P);for(m=2;m<F;++m){K.push(Q[I+m])}G.push(null);G.push(null);for(m=2;m<F;++m){G.push(Q[I+m])}G.push(J);G.push(P);for(m=2;m<F;++m){G.push(Q[I+m])}}G.push(O);G.push(N)}M.points=newpoints;H.datapoints.points=threspoints;if(H.datapoints.points.length>0){L.getData().push(H)}}D.hooks.processDatapoints.push(E)}B.plot.plugins.push({init:C,optio (…)
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
SkeletonDebugger.java 43 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;
  /external/chromium/ui/gfx/
point.cc 23 POINTS points = MAKEPOINTS(point); local
24 x_ = points.x;
25 y_ = points.y;
  /external/chromium_org/ui/gfx/
point.cc 19 POINTS points = MAKEPOINTS(point); local
20 set_x(points.x);
21 set_y(points.y);
  /frameworks/base/tests/RenderScriptTests/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);
  /frameworks/base/tests/RenderScriptTests/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);
  /frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
FountainRS.java 41 ScriptField_Point points = new ScriptField_Point(mRS, PART_COUNT);// local
45 smb.addVertexAllocation(points.getAllocation());
51 mScript.bind_point(points);
  /external/chromium_org/content/browser/web_contents/aura/
shadow_layer_delegate.cc 37 SkPoint points[2]; local
40 points[0].iset(0, 0);
41 points[1].iset(kShadowThick, 0);
44 SkGradientShader::CreateLinear(points, kShadowColors, NULL,
45 arraysize(points), SkShader::kRepeat_TileMode, NULL));
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Path.h 50 PathElementMoveToPoint, // The points member will contain 1 value.
51 PathElementAddLineToPoint, // The points member will contain 1 value.
52 PathElementAddQuadCurveToPoint, // The points member will contain 2 values.
53 PathElementAddCurveToPoint, // The points member will contain 3 values.
54 PathElementCloseSubpath // The points member will contain no values.
57 // The points in the sturcture are the same as those that would be used with the
59 // two tangent points and the endpoint.
62 FloatPoint* points; member in struct:WebCore::PathElement
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.cpp 49 FloatPoint points[4] = { FloatPoint(0.0f, 0.07f), FloatPoint(0.5f, 0.93f), FloatPoint(1.0f, 0.07f), FloatPoint(0.0f, 0.07f) }; local
50 return createPath(points);
55 FloatPoint points[4] = { FloatPoint(0.0f, 0.93f), FloatPoint(0.5f, 0.07f), FloatPoint(1.0f, 0.93f), FloatPoint(0.0f, 0.93f) }; local
56 return createPath(points);
61 FloatPoint points[4] = { FloatPoint(1.0f, 0.0f), FloatPoint(0.14f, 0.5f), FloatPoint(1.0f, 1.0f), FloatPoint(1.0f, 0.0f) }; local
62 return createPath(points);
67 FloatPoint points[4] = { FloatPoint(0.0f, 0.0f), FloatPoint(0.86f, 0.5f), FloatPoint(0.0f, 1.0f), FloatPoint(0.0f, 0.0f) }; local
68 return createPath(points);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPolyElement.cpp 34 // Define custom animated property 'points'.
53 REGISTER_LOCAL_ANIMATED_PROPERTY(points)
85 document()->accessSVGExtensions()->reportError("Problem parsing points=\"" + value + "\"");
146 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::points() function in class:WebCore::SVGPolyElement
  /external/chromium_org/third_party/skia/src/animator/
SkDrawGradient.h 48 SkTDScalarArray points; member in class:SkDrawLinearGradient
SkDrawPath.h 57 SkTDScalarArray points; member in class:SkPolyline
  /external/eigen/unsupported/test/
splines.cpp 203 ControlPointVectorType points = ControlPointVectorType::Random(2,100); local
206 Eigen::ChordLengths(points, chord_lengths);
210 const Spline2d spline = SplineFitting<Spline2d>::Interpolate(points,3);
212 for (Eigen::DenseIndex i=0; i<points.cols(); ++i)
215 PointType ref = points.col(i);
222 const Spline2d spline = SplineFitting<Spline2d>::Interpolate(points,3,chord_lengths);
224 for (Eigen::DenseIndex i=0; i<points.cols(); ++i)
227 PointType ref = points.col(i);
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
ShadowCamera.java 47 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/skia/src/animator/
SkDrawGradient.h 48 SkTDScalarArray points; member in class:SkDrawLinearGradient
SkDrawPath.h 57 SkTDScalarArray points; member in class:SkPolyline
  /external/skia/tests/
FlatDataTest.cpp 55 SkPoint points[2]; local
56 points[0].set(0, 0);
57 points[1].set(SkIntToScalar(20), SkIntToScalar(20));
61 SkShader* shader = SkGradientShader::CreateLinear(points, colors, NULL,
  /frameworks/base/media/mca/filterfw/native/core/
geometry.h 64 const std::vector<Point>& points() const { return points_; } function in class:android::filterfw::Quad
  /packages/apps/Camera/tests/src/com/android/camera/unittest/
CameraUnitTest.java 74 float[] points; local
78 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
80 matrix.mapPoints(points);
81 assertEquals(expected, points);
84 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
86 matrix.mapPoints(points);
87 assertEquals(expected, points);
90 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
92 matrix.mapPoints(points);
93 assertEquals(expected, points);
    [all...]
  /packages/apps/Camera2/tests/src/com/android/camera/unittest/
CameraUnitTest.java 74 float[] points; local
78 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
80 matrix.mapPoints(points);
81 assertEquals(expected, points);
84 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
86 matrix.mapPoints(points);
87 assertEquals(expected, points);
90 points = new float[] {-1000, -1000, 0, 0, 1000, 1000, 0, 1000, -750, 250};
92 matrix.mapPoints(points);
93 assertEquals(expected, points);
    [all...]
  /packages/apps/LegacyCamera/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;

Completed in 1896 milliseconds

1 2 3 4 5 6 7 8 910