Home
last modified time | relevance | path

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

/external/fonttools/Tests/colorLib/
Dbuilder_test.py995 layers, baseGlyphs = builder.buildColrV1(colorGlyphs, glyphMap)
996 assert baseGlyphs.BaseGlyphCount == len(colorGlyphs)
997 assert baseGlyphs.BaseGlyphV1Record[0].BaseGlyph == "d"
998 assert baseGlyphs.BaseGlyphV1Record[1].BaseGlyph == "a"
999 assert baseGlyphs.BaseGlyphV1Record[2].BaseGlyph == "g"
1001 layers, baseGlyphs = builder.buildColrV1(colorGlyphs)
1002 assert baseGlyphs.BaseGlyphCount == len(colorGlyphs)
1003 assert baseGlyphs.BaseGlyphV1Record[0].BaseGlyph == "a"
1004 assert baseGlyphs.BaseGlyphV1Record[1].BaseGlyph == "d"
1005 assert baseGlyphs.BaseGlyphV1Record[2].BaseGlyph == "g"
[all …]
/external/fonttools/Lib/fontTools/colorLib/
Dbuilder.py576 baseGlyphs = []
580 baseGlyphs.append(buildBaseGlyphV1Record(baseGlyph, layerBuilder, paint))
593 glyphs.BaseGlyphCount = len(baseGlyphs)
594 glyphs.BaseGlyphV1Record = baseGlyphs
/external/fonttools/Lib/fontTools/feaLib/
Dast.py486 self, baseGlyphs, markGlyphs, ligatureGlyphs, componentGlyphs, location=None argument
489 self.baseGlyphs, self.markGlyphs = (baseGlyphs, markGlyphs)
495 base = self.baseGlyphs.glyphSet() if self.baseGlyphs else tuple()
503 self.baseGlyphs.asFea() if self.baseGlyphs else "",
Dparser.py242 baseGlyphs = self.parse_glyphclass_(accept_glyphname=False)
244 baseGlyphs = None
262 baseGlyphs, markGlyphs, ligatureGlyphs, componentGlyphs, location=location
Dbuilder.py1415 self, location, baseGlyphs, ligatureGlyphs, markGlyphs, componentGlyphs argument
1417 for glyph in baseGlyphs:
/external/fonttools/Tests/feaLib/
Dparser_test.py449 self.assertEqual(glyphstr([s.baseGlyphs]), "b")
457 self.assertIsNone(s.baseGlyphs)