Home
last modified time | relevance | path

Searched refs:rLineTo (Results 1 – 9 of 9) sorted by relevance

/external/skia/bench/
DAlternatingColorPatternBench.cpp133 fPaths[count].rLineTo(SkIntToScalar(w), 0); in onPreDraw()
134 fPaths[count].rLineTo(0, SkIntToScalar(h)); in onPreDraw()
135 fPaths[count].rLineTo(SkIntToScalar(-w + 1), 0); in onPreDraw()
/external/skia/gm/
Dmultipicturedraw.cpp32 hex.rLineTo(SkScalarHalf(kHexSide), kRoot3Over2 * kHexSide); in make_hex_path()
33 hex.rLineTo(SkIntToScalar(kHexSide), 0); in make_hex_path()
34 hex.rLineTo(SkScalarHalf(kHexSide), -kHexSide * kRoot3Over2); in make_hex_path()
35 hex.rLineTo(-SkScalarHalf(kHexSide), -kHexSide * kRoot3Over2); in make_hex_path()
36 hex.rLineTo(-SkIntToScalar(kHexSide), 0); in make_hex_path()
146 tri.rLineTo(SkScalarHalf(kTriSide), 1.5f * kTriSide / kRoot3); in make_tri_path()
147 tri.rLineTo(-kTriSide, 0); in make_tri_path()
/external/fonttools/Lib/fontTools/misc/
DpsCharStrings.py661 def rLineTo(self, point): member in T2OutlineExtractor
745 self.rLineTo(point)
768 self.rLineTo(args[-2:])
775 self.rLineTo(lineArgs[i:i+2])
927 self.rLineTo(point)
/external/skia/src/animator/
DSkPathParts.cpp106 fPath->fPath.rLineTo(x, y); in add()
DSkAnimateSchema.xsd2037 <!-- @element rLineTo Extends the path with a line expressed with relative offsets. -->
2038 <xs:element ref="Sk:rLineTo"/>
2094 <!-- @element rLineTo Extends the path with a line expressed with relative offsets. -->
2095 <xs:element ref="Sk:rLineTo"/>
2122 <!-- @element rLineTo Extends the path with a line expressed with relative offsets. -->
2123 <xs:element ref="Sk:rLineTo"/>
2210 <!-- /** rLineTo
2214 <xs:element name="rLineTo">
/external/skia/include/core/
DSkPath.h371 void rLineTo(SkScalar dx, SkScalar dy);
/external/skia/tests/
DPathTest.cpp193 path.rLineTo(0, 100); in test_path_close_issue1474()
194 path.rLineTo(100, 0); in test_path_close_issue1474()
196 path.rLineTo(50, 50); // This should go to 50,50. in test_path_close_issue1474()
204 path.rLineTo(0, 100); in test_path_close_issue1474()
205 path.rLineTo(100, 0); in test_path_close_issue1474()
215 path.rLineTo(0, 100); in test_path_close_issue1474()
216 path.rLineTo(100, 0); in test_path_close_issue1474()
226 path.rLineTo(0, 100); in test_path_close_issue1474()
227 path.rLineTo(100, 0); in test_path_close_issue1474()
/external/skia/samplecode/
DSamplePathFuzz.cpp476 path.rLineTo(x, y); in makePath()
/external/skia/src/core/
DSkPath.cpp721 void SkPath::rLineTo(SkScalar x, SkScalar y) { in rLineTo() function in SkPath