Lines Matching full:tables

16 	a convenient way of accessing tables.
17 Tables will be only decompiled when necessary, ie. when they're actually
67 tables. For SING glyphlets, the cmap table is used to specify Unicode
75 individual tables during decompilation will be ignored, falling
93 self.tables = {}
177 # sort tables using the original font's order
222 The 'tables' argument must either be false (dump all tables) or a
223 list of tables to dump. The 'skipTables' argument may be a list of tables
224 to skip, but only when the 'tables' argument is false.
233 quiet=None, tables=None, skipTables=None, splitTables=False, argument
242 if not tables:
243 tables = list(self.keys())
244 if "GlyphOrder" not in tables:
245 tables = ["GlyphOrder"] + tables
248 if tag in tables:
249 tables.remove(tag)
250 numTables = len(tables)
271 tag = tables[i]
306 from .tables.DefaultTable import DefaultTable
341 return tag in self.tables
356 keys = list(self.tables.keys())
372 table = self.tables.get(tag)
376 self.tables[tag] = table
392 self.tables[tag] = table
402 from .tables.DefaultTable import DefaultTable
407 self.tables[tag] = table
414 self.tables[Tag(tag)] = table
419 if tag in self.tables:
420 del self.tables[tag]
472 # itself. This means self.tables['cmap'] contains a partially
478 cmapLoading = self.tables['cmap']
479 del self.tables['cmap']
518 del self.tables['cmap']
523 self.tables['cmap'] = cmapLoading
652 return self.tables[tag].compile(self)
666 'CFF2' tables. Otherwise the outlines will be taken from the 'glyf' table.
756 glyph (ttLib.tables._g_l_y_f.Glyph): The glyph object.
832 from . import tables
835 __import__("fontTools.ttLib.tables." + pyTag)
846 return getattr(tables, pyTag)
862 fontTools.ttLib.tables.DefaultTable.DefaultTable
893 from .tables.DefaultTable import DefaultTable
1035 """Rewrite a font file, ordering the tables as recommended by the
1041 …writer = SFNTWriter(outFile, len(reader.tables), reader.sfntVersion, reader.flavor, reader.flavorD…
1042 tables = list(reader.keys())
1043 for tag in sortedTagList(tables, tableOrder):