Home | History | Annotate | Download | only in tables

Lines Matching defs:Table

9 	"""Given a table spec from otData.py, build a converter object for each
10 field of the table. This is called for each table in otData.py, and
41 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
46 convertersByName[cls.__name__] = Table(name, repeat, aux, cls)
181 table = self.tableClass()
182 table.decompile(reader, font)
183 return table
197 pass # NULL table, ignore
202 table = self.tableClass()
207 table.Format = int(Format)
211 table.fromXML(name, attrs, content, font)
214 return table
217 class Table(Struct):
236 print("*** Warning: offset is not 0, yet suspiciously low (%s). table: %s" \
239 table = self.tableClass()
242 table.reader = reader
243 table.font = font
245 table.decompile(reader, font)
246 return table
260 class LTable(Table):
268 class SubTable(Table):
278 Table.write(self, writer, font, tableDict, value, repeatIndex)
280 class FeatureParams(Table):
306 pass # NULL table, ignore
380 "Offset": Table,