Searched defs:moveTo (Results 1 - 25 of 50) sorted by last modified time

12

/external/skia/src/core/
H A DSkPath.cpp125 // flag to require a moveTo if we begin with something else, like lineTo etc.
637 this->moveTo(x, y);
665 void SkPath::moveTo(SkScalar x, SkScalar y) { function in class:SkPath
679 this->moveTo(pt.fX + x, pt.fY + y);
692 this->moveTo(x, y);
814 // signal that we need a moveTo to follow us (unless we're done)
844 this->moveTo(left, top);
1105 this->moveTo(bounds.fLeft,
1112 this->moveTo(bounds.fLeft,
1186 this->moveTo(rec
[all...]
H A DSkStroke.cpp77 void moveTo(const SkPoint&);
139 fOuter.moveTo(fFirstOuterPt.fX, fFirstOuterPt.fY);
140 fInner.moveTo(prevX - normal->fX, prevY - normal->fY);
167 fOuter.moveTo(pt.fX, pt.fY);
222 void SkPathStroker::moveTo(const SkPoint& pt) { function in class:SkPathStroker
586 stroker.moveTo(pts[0]);
/external/skia/src/effects/
H A DSkCornerPathEffect.cpp45 SkPoint moveTo, lastCorner; local
50 moveTo.set(0, 0);
63 moveTo = pts[0];
66 dst->moveTo(pts[0]);
74 dst->moveTo(moveTo + step);
90 dst->moveTo(pts[0]);
99 dst->moveTo(pts[0]);
/external/skia/src/pathops/
H A DSkPathWriter.cpp45 moveTo();
100 moveTo();
128 moveTo();
155 void SkPathWriter::moveTo() { function in class:SkPathWriter
161 SkDebugf("path.moveTo(%1.9g,%1.9g);\n", fDefer[0].fX, fDefer[0].fY);
163 fPathPtr->moveTo(fDefer[0].fX, fDefer[0].fY);
/external/skia/src/utils/
H A DSkCullPoints.cpp73 void SkCullPoints::moveTo(int x, int y) { function in class:SkCullPoints
122 void SkCullPointsPath::moveTo(int x, int y) { function in class:SkCullPointsPath
123 fCP.moveTo(x, y);
131 fPath->moveTo(SkIntToScalar(pts[0].fX), SkIntToScalar(pts[0].fY));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java95 public void moveTo(int offset) { method in class:AnnotatedBytes
/external/skia/gm/
H A Dpoly2poly.cpp22 void moveTo(double x, double y);
51 void SkJSCanvas::moveTo(double x, double y) { function in class:SkJSCanvas
52 fPath.moveTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
87 path.reset(); path.moveTo(0, 0);
89 path.reset(); path.moveTo(100, 100);
91 path.reset(); path.moveTo(0, 0); path.moveTo(100, 100);
93 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100);
95 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100); path.moveTo(20
[all...]
/external/skia/include/core/
H A DSkPath.h218 * a moveTo and a lineTo). If so, and line[] is not null, it sets the 2
310 void moveTo(SkScalar x, SkScalar y);
316 void moveTo(const SkPoint& p) { function in class:SkPath
317 this->moveTo(p.fX, p.fY);
322 same as moveTo().
332 moveTo() call has been made for this contour, the first point is
340 /** Add a line from the last point to the specified point. If no moveTo()
351 point on this contour. If there is no previous point, then a moveTo(0,0)
362 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
373 p1, and ending at p2. If no moveTo() cal
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPath.java27 public void moveTo(float x, float y) { method in class:ShadowPath
61 * @return whether the {@link #moveTo(float, float)} method was called
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2glue.h97 /* `moveTo' and `pt3' is not used for `quadTo'. The initial point `pt0' */
126 CF2_Callback_Type moveTo; member in struct:CF2_OutlineCallbacksRec_
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp79 Stack::moveTo(Stack& that) function in class:nv50_ir::Stack
/external/fonttools/Lib/fontTools/pens/
H A DbasePen.py30 BasePen, you _don't_ override moveTo(), lineTo(), etc., but _moveTo(),
48 def moveTo(self, pt): member in class:AbstractPen
122 def moveTo(self, pt): member in class:NullPen
218 def moveTo(self, pt): member in class:BasePen
355 pen.moveTo((0, 0))
H A DtransformPen.py28 def moveTo(self, pt): member in class:TransformPen
29 self._outPen.moveTo(self._transformPoint(pt))
62 pen.moveTo((0, 0))
/external/fonttools/Tools/fontTools/pens/
H A DbasePen.py30 BasePen, you _don't_ override moveTo(), lineTo(), etc., but _moveTo(),
48 def moveTo(self, pt): member in class:AbstractPen
122 def moveTo(self, pt): member in class:NullPen
218 def moveTo(self, pt): member in class:BasePen
355 pen.moveTo((0, 0))
H A DtransformPen.py28 def moveTo(self, pt): member in class:TransformPen
29 self._outPen.moveTo(self._transformPoint(pt))
62 pen.moveTo((0, 0))
/external/freetype/src/cff/
H A Dcf2glue.h97 /* `moveTo' and `pt3' is not used for `quadTo'. The initial point `pt0' */
126 CF2_Callback_Type moveTo; member in struct:CF2_OutlineCallbacksRec_
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.sat4j.core_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/skia/gm/
H A Dpoly2poly.cpp22 void moveTo(double x, double y);
52 void SkJSCanvas::moveTo(double x, double y) { function in class:SkJSCanvas
53 fPath.moveTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
88 path.reset(); path.moveTo(0, 0);
90 path.reset(); path.moveTo(100, 100);
92 path.reset(); path.moveTo(0, 0); path.moveTo(100, 100);
94 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100);
96 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100); path.moveTo(20
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkPath.h219 * a moveTo and a lineTo). If so, and line[] is not null, it sets the 2
311 void moveTo(SkScalar x, SkScalar y);
317 void moveTo(const SkPoint& p) { function in class:SkPath
318 this->moveTo(p.fX, p.fY);
323 same as moveTo().
333 moveTo() call has been made for this contour, the first point is
341 /** Add a line from the last point to the specified point. If no moveTo()
352 point on this contour. If there is no previous point, then a moveTo(0,0)
363 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
374 p1, and ending at p2. If no moveTo() cal
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp125 // flag to require a moveTo if we begin with something else, like lineTo etc.
637 this->moveTo(x, y);
665 void SkPath::moveTo(SkScalar x, SkScalar y) { function in class:SkPath
681 this->moveTo(pt.fX + x, pt.fY + y);
694 this->moveTo(x, y);
816 // signal that we need a moveTo to follow us (unless we're done)
846 this->moveTo(left, top);
1102 this->moveTo(bounds.fLeft,
1109 this->moveTo(bounds.fLeft,
1155 /* If addOval() is called after previous moveTo(),
[all...]

Completed in 325 milliseconds

12