Searched refs:firstPt (Results 1 – 6 of 6) sorted by relevance
/external/skia/tests/ |
D | PathOpsExtendedTest.cpp | 57 SkPoint firstPt = {0, 0}, lastPt = {0, 0}; in showPathData() local 63 if (firstPtSet && lastPtSet && firstPt != lastPt) { in showPathData() 65 firstPt.fX, firstPt.fY); in showPathData() 68 firstPt = pts[0]; in showPathData() 98 if (firstPtSet && lastPtSet && firstPt != lastPt) { in showPathData() 100 firstPt.fX, firstPt.fY); in showPathData() 109 if (firstPtSet && lastPtSet && firstPt != lastPt) { in showPathData() 111 firstPt.fX, firstPt.fY); in showPathData()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _g_l_y_f.py | 635 x1,y1 = allCoords[compo.firstPt] 822 self.firstPt, self.secondPt = int(x), int(y) 829 self.firstPt, self.secondPt = int(x), int(y) 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) 903 attrs = attrs + [("firstPt", self.firstPt), ("secondPt", self.secondPt)] 925 self.firstPt = safeEval(attrs["firstPt"])
|
/external/skia/include/core/ |
D | SkPathMeasure.h | 117 bool conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt,const SkPoint& lastPt);
|
/external/skia/src/core/ |
D | SkScan_Hairline.cpp | 521 SkPoint pts[4], firstPt, lastPt; in hair_path() local 531 firstPt = lastPt = pts[0]; in hair_path() 572 pts[1] = firstPt; in hair_path()
|
D | SkPathMeasure.cpp | 68 bool SkPathMeasure::conic_too_curvy(const SkPoint& firstPt, const SkPoint& midTPt, in conic_too_curvy() argument 70 SkPoint midEnds = firstPt + lastPt; in conic_too_curvy()
|
D | SkPath.cpp | 264 SkPoint firstPt; in conservativelyContainsRect() local 279 firstPt = prevPt = pts[0]; in conservativelyContainsRect() 326 return check_edge_against_rect(prevPt, firstPt, rect, direction); in conservativelyContainsRect()
|