HomeSort by relevance Sort by last modified time
    Searched full:lineto (Results 76 - 100 of 256) sorted by null

1 2 34 5 6 7 8 91011

  /external/skia/src/animator/
SkParseSVGPath.cpp 151 fPath.lineTo(points[0]);
157 fPath.lineTo(x, c.fY);
164 fPath.lineTo(c.fX, y);
212 fPath.lineTo(f);
223 fPath.lineTo(args[1].fX, args[1].fY);
  /external/skia/src/utils/
SkParsePath.cpp 110 path.lineTo(points[0]);
116 path.lineTo(x, c.fY);
122 path.lineTo(c.fX, y);
161 fPath.lineTo(f);
172 path.lineTo(args[1].fX, args[1].fY);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryChart.java 656 lastPath.lineTo(w, y);
658 curLevelPath.lineTo(w, y);
660 curLevelPath.lineTo(w, mLevelTop+levelh);
661 curLevelPath.lineTo(startX, mLevelTop+levelh);
666 mChargingPath.lineTo(w, h-mChargingOffset);
669 mScreenOnPath.lineTo(w, h-mScreenOnOffset);
672 mGpsOnPath.lineTo(w, h-mGpsOnOffset);
675 mFlashlightOnPath.lineTo(w, h-mFlashlightOnOffset);
678 mCameraOnPath.lineTo(w, h-mCameraOnOffset);
681 mWifiRunningPath.lineTo(w, h-mWifiRunningOffset)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/
chart_series.html 262 ctx.lineTo(currentViewX, previousViewY);
340 ctx.lineTo(currentViewX, previousViewY);
344 ctx.lineTo(currentViewX, currentViewY);
350 ctx.lineTo(currentViewX, previousViewY);
362 ctx.lineTo(previousBaseStepViewX, baseStepViewY);
363 ctx.lineTo(baseStepViewX, baseStepViewY);
383 ctx.lineTo(currentViewX, currentViewY);
415 ctx.lineTo(previousBaseStepViewX, baseStepViewY);
416 ctx.lineTo(baseStepViewX, baseStepViewY);
  /external/skia/gm/
degeneratesegments.cpp 50 path.lineTo(startPt);
57 path.lineTo(moveToPt);
64 path.lineTo(moveToPt);
116 path.lineTo(endPt);
124 path.lineTo(endPt);
132 path.lineTo(endPt);
fatpathfill.cpp 80 line.lineTo(SkIntToScalar(4 + i), SkIntToScalar(1));
hittestpath.cpp 50 path.lineTo(rand.nextUScalar1() * scale, rand.nextUScalar1() * scale);
  /external/fonttools/Lib/fontTools/pens/
basePen.py 30 BasePen, you _don't_ override moveTo(), lineTo(), etc., but _moveTo(),
54 def lineTo(self, pt):
125 def lineTo(self, pt):
222 def lineTo(self, pt):
251 self.lineTo(points[0])
281 self.lineTo(points[0])
345 print("%s %s lineto" % (pt[0], pt[1]))
356 pen.lineTo((0, 100))
  /external/skia/samplecode/
SampleFatBits.cpp 147 path.lineTo(rr.fRight, rr.fBottom);
155 path.lineTo(r.fRight, r.fBottom);
232 path.lineTo(pts[1]);
255 path.lineTo(dst.getPoint(2));
330 path.lineTo(pts[1]);
331 path.lineTo(pts[2]);
348 path.lineTo(pts[1]);
349 path.lineTo(pts[2]);
SampleStringArt.cpp 44 path.lineTo(rp);
SampleStrokePath.cpp 24 path.lineTo(52800, 8000);
25 path.lineTo(52800, 41600);
26 path.lineTo(17600, 41600);
  /external/skia/tests/
PathOpsSimplifyFailTest.cpp 46 case 0: path.lineTo(nonFinitePts[i]); break;
74 case 0: path.lineTo(finitePts[f]); break;
PathOpsTightBoundsTest.cpp 23 path.lineTo(ran.nextRangeF(-1000, 1000), ran.nextRangeF(-1000, 1000));
69 path.lineTo(ran.nextRangeF(pathMin, pathMax), ran.nextRangeF(pathMin, pathMax));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
FramedTextButton.java 114 gPath.lineTo(w - mTextPadding - mTrianglePadding,
116 gPath.lineTo(w - mTextPadding - mTrianglePadding,
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
BezierLineAndPointRenderer.java 33 //path.lineTo(thisPoint.x, thisPoint.y);
StepRenderer.java 35 //path.lineTo(thisPoint.x, thisPoint.y);
37 path.lineTo(thisPoint.x, lastPoint.y);
38 path.lineTo(thisPoint.x, thisPoint.y);
  /external/skia/bench/
PathIterBench.cpp 47 fPath.lineTo(pts[1]);
  /external/skia/experimental/SimpleCocoaApp/
SimpleApp.mm 71 path.lineTo(1, 1);
72 path.lineTo(1, 8);
73 path.lineTo(0, 9);
113 SkDebugf("path.lineTo(%1.9g, %1.9g);\n", pts[1].fX, pts[1].fY);
  /external/skia/experimental/SkV8Example/
Path2DBuilder.cpp 50 ADD_METHOD("lineTo", LineTo);
89 void Path2DBuilder::LineTo(const v8::FunctionCallbackInfo<v8::Value>& args) {
99 path->fSkPath.lineTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
Path2DBuilder.h 36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SensorTest.java 171 mPath.lineTo(-20, 60);
172 mPath.lineTo(0, 50);
173 mPath.lineTo(20, 60);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 246 pathDelegate.lineTo(x, y);
659 private void lineTo(float x, float y) {
663 mPath.lineTo(mLastX = x, mLastY = y);
667 * Same as lineTo, but the coordinates are considered relative to the last
682 mPath.lineTo(mLastX = dx, mLastY = dy);
763 * automatic lineTo() is added to connect the current contour to the
817 lineTo(right, top);
818 lineTo(right, bottom);
819 lineTo(left, bottom);
822 lineTo(left, bottom)
    [all...]
  /frameworks/base/docs/image_sources/training/game-controllers/
game-controller-profiles.graffle 137 <string>LINETO</string>
143 <string>LINETO</string>
149 <string>LINETO</string>
155 <string>LINETO</string>
161 <string>LINETO</string>
167 <string>LINETO</string>
173 <string>LINETO</string>
179 <string>LINETO</string>
185 <string>LINETO</string>
191 <string>LINETO</string
    [all...]
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/base/
quad_stack_view.html 97 ctx.lineTo(tmp_p1[0], tmp_p1[1]);
98 ctx.lineTo(tmp_p2[0], tmp_p2[1]);
272 ctx.lineTo(p2[0], p2[1]);
273 ctx.lineTo(p3[0], p3[1]);
274 ctx.lineTo(p4[0], p4[1]);
284 ctx.lineTo(p2[0], p2[1]);
285 ctx.lineTo(p3[0], p3[1]);
286 ctx.lineTo(p4[0], p4[1]);
321 ctx.lineTo(p2[0], p2[1]);
322 ctx.lineTo(p3[0], p3[1])
    [all...]
  /external/skia/src/core/
SkStroke.cpp 166 void lineTo(const SkPoint&);
413 fOuter.lineTo(currPt.fX + normal.fX, currPt.fY + normal.fY);
414 fInner.lineTo(currPt.fX - normal.fX, currPt.fY - normal.fY);
417 void SkPathStroker::lineTo(const SkPoint& currPt) {
787 this->lineTo(pt2);
791 this->lineTo(reduction);
794 this->lineTo(pt2);
801 this->lineTo(pt2);
823 this->lineTo(pt2);
827 this->lineTo(reduction)
    [all...]

Completed in 259 milliseconds

1 2 34 5 6 7 8 91011