Home
last modified time | relevance | path

Searched refs:endPtsOfContours (Results 1 – 6 of 6) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py413 for j in range(last, self.endPtsOfContours[i] + 1):
424 last = self.endPtsOfContours[i] + 1
460 self.endPtsOfContours = [len(coordinates)-1]
464 self.endPtsOfContours.append(len(self.coordinates)-1)
501 return len(self.coordinates), len(self.endPtsOfContours)
524 endPtsOfContours = array.array("h")
525 endPtsOfContours.fromstring(data[:2*self.numberOfContours])
526 if sys.byteorder != "big": endPtsOfContours.byteswap()
527 self.endPtsOfContours = endPtsOfContours.tolist()
536 nCoordinates = self.endPtsOfContours[-1] + 1
[all …]
/external/fonttools/Lib/fontTools/pens/
DttGlyphPen.py146 glyph.endPtsOfContours = self.endPts
154 glyph.numberOfContours = len(glyph.endPtsOfContours)
/external/fonttools/Lib/fontTools/ttLib/
Dwoff2.py716 endPtsOfContours = []
721 endPtsOfContours.append(endPoint)
722 glyph.endPtsOfContours = endPtsOfContours
751 nPoints = glyph.endPtsOfContours[-1] + 1
842 for endPoint in glyph.endPtsOfContours:
/external/skia/src/sfnt/
DSkOTTable_glyf.h74 SK_OT_USHORT endPtsOfContours[1/*numberOfContours*/]; member
/external/skqp/src/sfnt/
DSkOTTable_glyf.h74 SK_OT_USHORT endPtsOfContours[1/*numberOfContours*/]; member
/external/u-boot/drivers/video/
Dstb_truetype.h1248 stbtt_uint8 *endPtsOfContours; in stbtt_GetGlyphShape() local
1265 endPtsOfContours = (data + g + 10); in stbtt_GetGlyphShape()
1269 n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2); in stbtt_GetGlyphShape()
1364 next_move = 1 + ttUSHORT(endPtsOfContours+j*2); in stbtt_GetGlyphShape()