Searched refs:glyfTable (Results 1 – 12 of 12) sorted by relevance
/external/fonttools/Tests/ttLib/tables/ |
D | _g_l_y_f_test.py | 220 glyfTable = font['glyf'] = newTable('glyf') 227 glyfTable.decompile(self.glyfData, font) 236 glyfTable = font['glyf'] 237 glyfData = glyfTable.compile(font) 268 glyfTable = newTable("glyf") 269 glyfTable.glyphs = glyphSet 270 glyfTable.glyphOrder = sorted(glyphSet) 272 composite.compact(glyfTable) 280 composite.expand(glyfTable) 290 composite.compact(glyfTable) [all …]
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | removeOverlaps.py | 75 glyph.recalcBounds(glyfTable=None) 82 glyfTable: _g_l_y_f.table__g_l_y_f, 86 glyph = glyfTable[glyphName] 100 glyfTable[glyphName] = glyph = ttfGlyphFromSkPath(path2) 137 glyfTable = font["glyf"] 154 glyfTable[name].getCompositeMaxpValues(glyfTable).maxComponentDepth 155 if glyfTable[name].isComposite() 163 glyphName, glyphSet, glyfTable, hmtxTable, removeHinting
|
D | woff2.py | 115 glyfTable = self.ttFont['glyf'] = WOFF2GlyfTable() 116 glyfTable.reconstruct(data, self.ttFont) 118 glyfTable.padding = padding 119 data = glyfTable.compile(self.ttFont) 354 glyfTable = self.ttFont['glyf'] 355 data = glyfTable.transform(self.ttFont) 997 glyfTable = ttFont["glyf"] 999 glyphOrder = glyfTable.glyphOrder 1021 glyph = glyfTable[glyphName] 1038 glyph = glyfTable[glyphName]
|
D | ttFont.py | 786 glyfTable = self._glyphset._glyphs 789 glyph.draw(pen, glyfTable, offset) 795 glyfTable = self._glyphset._glyphs 798 glyph.drawPoints(pen, glyfTable, offset)
|
/external/fonttools/Tests/ttLib/ |
D | woff2_test.py | 184 glyfTable = ttLib.newTable('glyf') 185 glyfTable.decompile(font.getTableData('glyf'), font) 186 glyfTable.padding = padding 188 tableData = glyfTable.compile(font) 190 glyfTable.compile(font) 193 glyfTable.compile(font) 739 glyfTable = WOFF2GlyfTable() 740 glyfTable.reconstruct(self.transformedGlyfData, self.font) 741 glyfTable.padding = 4 742 data = glyfTable.compile(self.font) [all …]
|
/external/fonttools/Snippets/ |
D | decompose-ttf.py | 29 glyfTable = f["glyf"] variable 33 if not glyfTable[glyphName].isComposite(): 51 glyfTable[glyphName] = ttPen.glyph()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _m_a_x_p.py | 59 glyfTable = ttFont['glyf'] 62 self.numGlyphs = len(glyfTable) 76 g = glyfTable[glyphName] 89 nPoints, nContours, componentDepth = g.getCompositeMaxpValues(glyfTable)
|
D | _g_l_y_f.py | 526 def compact(self, glyfTable, recalcBBoxes=True): argument 527 data = self.compile(glyfTable, recalcBBoxes) 531 def expand(self, glyfTable): argument 548 self.decompileComponents(data, glyfTable) 552 def compile(self, glyfTable, recalcBBoxes=True): argument 556 self.expand(glyfTable) 562 self.recalcBounds(glyfTable) 565 data = data + self.compileComponents(glyfTable) 649 def getCompositeMaxpValues(self, glyfTable, maxComponentDepth=1): argument 655 baseGlyph = glyfTable[compo.glyphName] [all …]
|
D | _v_h_e_a.py | 52 glyfTable = ttFont['glyf'] 54 g = glyfTable[name] 60 g.recalcBounds(glyfTable)
|
D | _h_h_e_a.py | 66 glyfTable = ttFont['glyf'] 68 g = glyfTable[name] 74 g.recalcBounds(glyfTable)
|
/external/fonttools/Tests/pens/ |
D | ttGlyphPen_test.py | 20 glyfTable = font['glyf'] 33 oldGlyph.compile(glyfTable), newGlyph.compile(glyfTable))
|
/external/fonttools/Lib/fontTools/varLib/instancer/ |
D | __init__.py | 1062 def setMacOverlapFlags(glyfTable): argument 1065 for glyphName in glyfTable.keys(): 1066 glyph = glyfTable[glyphName]
|