Searched refs:numberOfContours (Results 1 – 15 of 15) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _g_l_y_f.py | 141 if glyph.numberOfContours: 325 numberOfContours=glyph.numberOfContours, 334 numberOfContours=glyph.numberOfContours, 374 elif glyph.numberOfContours == 0: 511 self.numberOfContours = 0 527 self.numberOfContours = 0 534 if self.numberOfContours == 0: 548 if self.numberOfContours == 0: 566 for i in range(self.numberOfContours): 583 haveInstructions = self.numberOfContours > 0 [all …]
|
D | _h_h_e_a.py | 58 if g.numberOfContours == 0: 60 if g.numberOfContours < 0 and not hasattr(g, "xMax"):
|
D | _v_h_e_a.py | 57 if g.numberOfContours == 0: 59 if g.numberOfContours < 0 and not hasattr(g, "yMax"):
|
D | _m_a_x_p.py | 79 if g.numberOfContours: 86 if g.numberOfContours > 0:
|
/external/fonttools/Lib/fontTools/pens/ |
D | ttGlyphPen.py | 152 glyph.numberOfContours = -1 154 glyph.numberOfContours = len(glyph.endPtsOfContours)
|
/external/harfbuzz_ng/src/ |
D | hb-ot-glyf-table.hh | 397 bool has_data () const { return numberOfContours; } in has_data() 411 HBINT16 numberOfContours; member 432 { return GlyphHeader::static_size + 2 * header.numberOfContours; } in instruction_len_offset() 573 int num_contours = header.numberOfContours; in get_contour_points() 743 int num_contours = header->numberOfContours; in Glyph()
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | woff2.py | 747 glyph.numberOfContours = self.nContourStream[glyphID] 748 if glyph.numberOfContours == 0: 775 for i in range(glyph.numberOfContours): 875 self.nContourStream += struct.pack(">h", glyph.numberOfContours) 876 if glyph.numberOfContours == 0: 912 assert glyph.numberOfContours != 0, "empty glyph has no bbox"
|
/external/fonttools/Tests/subset/ |
D | subset_test.py | 578 self.assertGreater(font["glyf"]["A"].numberOfContours, 0) 579 self.assertGreater(font["glyf"]["B"].numberOfContours, 0) 600 self.assertEqual(glyf["A"].numberOfContours, 0) 601 self.assertGreater(glyf["B"].numberOfContours, 0)
|
/external/skia/src/sfnt/ |
D | SkOTTable_glyf.h | 67 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple member
|
/external/skqp/src/sfnt/ |
D | SkOTTable_glyf.h | 67 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple member
|
/external/u-boot/drivers/video/ |
D | stb_truetype.h | 1222 stbtt_int16 numberOfContours; in stbtt_IsGlyphEmpty() local 1225 numberOfContours = ttSHORT(info->data + g); in stbtt_IsGlyphEmpty() 1226 return numberOfContours == 0; in stbtt_IsGlyphEmpty() 1247 stbtt_int16 numberOfContours; in stbtt_GetGlyphShape() local 1258 numberOfContours = ttSHORT(data + g); in stbtt_GetGlyphShape() 1260 if (numberOfContours > 0) { in stbtt_GetGlyphShape() 1266 ins = ttUSHORT(data + g + 10 + numberOfContours * 2); in stbtt_GetGlyphShape() 1267 points = data + g + 10 + numberOfContours * 2 + 2 + ins; in stbtt_GetGlyphShape() 1269 n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2); in stbtt_GetGlyphShape() 1271 m = n + 2*numberOfContours; // a loose bound on how many vertices we might need in stbtt_GetGlyphShape() [all …]
|
/external/fonttools/Tests/varLib/ |
D | instancer_test.py | 1058 a.numberOfContours = 1 1061 b.numberOfContours = -1 1066 c.numberOfContours = 0
|
/external/mesa3d/src/imgui/ |
D | imstb_truetype.h | 1613 stbtt_int16 numberOfContours; in stbtt_IsGlyphEmpty() local 1619 numberOfContours = ttSHORT(info->data + g); in stbtt_IsGlyphEmpty() 1620 return numberOfContours == 0; in stbtt_IsGlyphEmpty() 1641 stbtt_int16 numberOfContours; in stbtt__GetGlyphShapeTT() local 1652 numberOfContours = ttSHORT(data + g); in stbtt__GetGlyphShapeTT() 1654 if (numberOfContours > 0) { in stbtt__GetGlyphShapeTT() 1660 ins = ttUSHORT(data + g + 10 + numberOfContours * 2); in stbtt__GetGlyphShapeTT() 1661 points = data + g + 10 + numberOfContours * 2 + 2 + ins; in stbtt__GetGlyphShapeTT() 1663 n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2); in stbtt__GetGlyphShapeTT() 1665 m = n + 2*numberOfContours; // a loose bound on how many vertices we might need in stbtt__GetGlyphShapeTT() [all …]
|
/external/fonttools/Lib/fontTools/varLib/ |
D | mutator.py | 325 elif glyph.numberOfContours > 0:
|
D | instancer.py | 751 elif glyph.numberOfContours > 0:
|