Lines Matching refs:SubTable
500 for subtable in lookup.SubTable:
501 if subtable.LookupType == 5:
502 context_subtables.append(subtable)
503 elif subtable.LookupType == 4:
504 ligature_subtables.append(subtable)
506 for subtable in context_subtables:
507 self.add_gsub_context_subtable(subtable, gsub.table.LookupList, glyph_to_codepoint_map)
509 for subtable in ligature_subtables:
510 self.add_gsub_ligature_subtable(subtable, glyph_to_codepoint_map)
512 def add_gsub_context_subtable(self, subtable, lookup_list, glyph_to_codepoint_map):
514 for sub_class_set in subtable.SubClassSet:
545 for x in lookup_list.Lookup[index].SubTable:
550 def add_gsub_ligature_subtable(self, subtable, glyph_to_codepoint_map):
551 for name, ligatures in subtable.ligatures.iteritems():