HomeSort by relevance Sort by last modified time
    Searched refs:firstPt (Results 1 - 15 of 15) sorted by null

  /external/skia/include/core/
SkPathMeasure.h 118 bool conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt,const SkPoint& lastPt);
  /external/skqp/include/core/
SkPathMeasure.h 118 bool conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt,const SkPoint& lastPt);
  /external/skia/tests/
PathOpsExtendedTest.cpp 88 SkPoint firstPt = {0, 0}, lastPt = {0, 0};
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.fX, firstPt.fY)
    [all...]
PathTest.cpp     [all...]
  /external/skqp/tests/
PathOpsExtendedTest.cpp 88 SkPoint firstPt = {0, 0}, lastPt = {0, 0};
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.fX, firstPt.fY)
    [all...]
PathTest.cpp     [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_g_l_y_f.py 633 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/
SkScan_Hairline.cpp 535 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
SkPathMeasure.cpp 152 bool SkPathMeasure::conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt,
154 SkPoint midEnds = firstPt + lastPt;
SkPath.cpp 281 SkPoint firstPt;
296 firstPt = prevPt = pts[0];
344 return check_edge_against_rect(prevPt, firstPt, rect, direction);
    [all...]
  /external/skqp/src/core/
SkScan_Hairline.cpp 535 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
SkPathMeasure.cpp 152 bool SkPathMeasure::conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt,
154 SkPoint midEnds = firstPt + lastPt;
SkPath.cpp 280 SkPoint firstPt;
295 firstPt = prevPt = pts[0];
343 return check_edge_against_rect(prevPt, firstPt, rect, direction);
    [all...]
  /external/skia/samplecode/
SampleAAGeometry.cpp 204 SkPoint firstPt = { 0, 0 }; // init to avoid warning
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;
    [all...]
  /external/skqp/samplecode/
SampleAAGeometry.cpp 204 SkPoint firstPt = { 0, 0 }; // init to avoid warning
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;
    [all...]

Completed in 686 milliseconds