Home
last modified time | relevance | path

Searched refs:numberOfContours (Results 1 – 15 of 15) sorted by relevance

/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py141 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.py58 if g.numberOfContours == 0:
60 if g.numberOfContours < 0 and not hasattr(g, "xMax"):
D_v_h_e_a.py57 if g.numberOfContours == 0:
59 if g.numberOfContours < 0 and not hasattr(g, "yMax"):
D_m_a_x_p.py79 if g.numberOfContours:
86 if g.numberOfContours > 0:
/external/fonttools/Lib/fontTools/pens/
DttGlyphPen.py152 glyph.numberOfContours = -1
154 glyph.numberOfContours = len(glyph.endPtsOfContours)
/external/harfbuzz_ng/src/
Dhb-ot-glyf-table.hh397 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/
Dwoff2.py747 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/
Dsubset_test.py578 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/
DSkOTTable_glyf.h67 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple member
/external/skqp/src/sfnt/
DSkOTTable_glyf.h67 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple member
/external/u-boot/drivers/video/
Dstb_truetype.h1222 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/
Dinstancer_test.py1058 a.numberOfContours = 1
1061 b.numberOfContours = -1
1066 c.numberOfContours = 0
/external/mesa3d/src/imgui/
Dimstb_truetype.h1613 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/
Dmutator.py325 elif glyph.numberOfContours > 0:
Dinstancer.py751 elif glyph.numberOfContours > 0: