Searched refs:firstPt (Results 1 - 16 of 16) sorted by relevance

/external/skia/include/core/
H A DSkPathMeasure.h118 bool conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt,const SkPoint& lastPt);
/external/skqp/include/core/
H A DSkPathMeasure.h118 bool conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt,const SkPoint& lastPt);
/external/skia/tests/
H A DPathOpsExtendedTest.cpp88 SkPoint firstPt = {0, 0}, lastPt = {0, 0}; local
94 if (firstPtSet && lastPtSet && firstPt != lastPt) {
96 firstPt.fX, firstPt.fY);
99 firstPt = pts[0];
129 if (firstPtSet && lastPtSet && firstPt != lastPt) {
131 firstPt.fX, firstPt.fY);
140 if (firstPtSet && lastPtSet && firstPt != lastPt) {
142 firstPt
[all...]
H A DPathTest.cpp2174 SkPoint firstPt = {0.f, 0.f}; local
2178 firstPt = verbPts[0];
2191 path2.lineTo(firstPt);
/external/skqp/tests/
H A DPathOpsExtendedTest.cpp88 SkPoint firstPt = {0, 0}, lastPt = {0, 0}; local
94 if (firstPtSet && lastPtSet && firstPt != lastPt) {
96 firstPt.fX, firstPt.fY);
99 firstPt = pts[0];
129 if (firstPtSet && lastPtSet && firstPt != lastPt) {
131 firstPt.fX, firstPt.fY);
140 if (firstPtSet && lastPtSet && firstPt != lastPt) {
142 firstPt
[all...]
H A DPathTest.cpp2174 SkPoint firstPt = {0.f, 0.f}; local
2178 firstPt = verbPts[0];
2191 path2.lineTo(firstPt);
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_g_l_y_f.py633 if hasattr(compo, "firstPt"):
635 x1,y1 = allCoords[compo.firstPt]
797 # XXX Ignoring self.firstPt & self.lastpt for now: I need to implement
822 self.firstPt, self.secondPt = int(x), int(y)
829 self.firstPt, self.secondPt = int(x), int(y)
865 if hasattr(self, "firstPt"):
866 if (0 <= self.firstPt <= 255) and (0 <= self.secondPt <= 255):
867 data = data + struct.pack(">BB", self.firstPt, self.secondPt)
869 data = data + struct.pack(">HH", self.firstPt, self.secondPt)
900 if not hasattr(self, "firstPt")
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_g_l_y_f.py633 if hasattr(compo, "firstPt"):
635 x1,y1 = allCoords[compo.firstPt]
797 # XXX Ignoring self.firstPt & self.lastpt for now: I need to implement
822 self.firstPt, self.secondPt = int(x), int(y)
829 self.firstPt, self.secondPt = int(x), int(y)
865 if hasattr(self, "firstPt"):
866 if (0 <= self.firstPt <= 255) and (0 <= self.secondPt <= 255):
867 data = data + struct.pack(">BB", self.firstPt, self.secondPt)
869 data = data + struct.pack(">HH", self.firstPt, self.secondPt)
900 if not hasattr(self, "firstPt")
[all...]
/external/skia/src/core/
H A DSkScan_Hairline.cpp535 SkPoint pts[4], firstPt, lastPt;
545 firstPt = lastPt = pts[0];
586 pts[1] = firstPt;
599 firstPt = pts[0]; // the curve moved the initial point, so close to it instead
H A DSkPathMeasure.cpp152 bool SkPathMeasure::conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt, argument
154 SkPoint midEnds = firstPt + lastPt;
H A DSkPath.cpp281 SkPoint firstPt; local
296 firstPt = prevPt = pts[0];
344 return check_edge_against_rect(prevPt, firstPt, rect, direction);
/external/skqp/src/core/
H A DSkScan_Hairline.cpp535 SkPoint pts[4], firstPt, lastPt;
545 firstPt = lastPt = pts[0];
586 pts[1] = firstPt;
599 firstPt = pts[0]; // the curve moved the initial point, so close to it instead
H A DSkPathMeasure.cpp152 bool SkPathMeasure::conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt, argument
154 SkPoint midEnds = firstPt + lastPt;
H A DSkPath.cpp280 SkPoint firstPt; local
295 firstPt = prevPt = pts[0];
343 return check_edge_against_rect(prevPt, firstPt, rect, direction);
/external/skia/samplecode/
H A DSampleAAGeometry.cpp204 SkPoint firstPt = { 0, 0 }; // init to avoid warning local
241 result.lineTo((lastPt.fX + firstPt.fX) / 2, (lastPt.fY + firstPt.fY) / 2);
251 result.moveTo(firstPt = pts[0]);
1081 SkPoint firstPt = { 0, 0 }; // init to avoid warning;
1167 draw_bisect(canvas, lastVector, firstVector, firstPt);
1176 firstPt = pts[0];
1416 SkPoint pts[4], firstPt, lastPt;
1424 firstPt = pts[0];
1461 stroker.lineTo(firstPt);
[all...]
/external/skqp/samplecode/
H A DSampleAAGeometry.cpp204 SkPoint firstPt = { 0, 0 }; // init to avoid warning local
241 result.lineTo((lastPt.fX + firstPt.fX) / 2, (lastPt.fY + firstPt.fY) / 2);
251 result.moveTo(firstPt = pts[0]);
1081 SkPoint firstPt = { 0, 0 }; // init to avoid warning;
1167 draw_bisect(canvas, lastVector, firstVector, firstPt);
1176 firstPt = pts[0];
1416 SkPoint pts[4], firstPt, lastPt;
1424 firstPt = pts[0];
1461 stroker.lineTo(firstPt);
[all...]

Completed in 469 milliseconds