Searched refs:oldSubTable (Results 1 – 2 of 2) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | otTables.py | 1687 def splitMultipleSubst(oldSubTable, newSubTable, overflowRecord): argument 1689 oldMapping = sorted(oldSubTable.mapping.items()) 1708 del oldSubTable.mapping[key] 1712 def splitAlternateSubst(oldSubTable, newSubTable, overflowRecord): argument 1714 if hasattr(oldSubTable, 'sortCoverageLast'): 1715 newSubTable.sortCoverageLast = oldSubTable.sortCoverageLast 1717 oldAlts = sorted(oldSubTable.alternates.items()) 1736 del oldSubTable.alternates[key] 1741 def splitLigatureSubst(oldSubTable, newSubTable, overflowRecord): argument 1743 oldLigs = sorted(oldSubTable.ligatures.items()) [all …]
|
/external/fonttools/Tests/ttLib/tables/ |
D | otTables_test.py | 556 oldSubTable = buildMultipleSubstSubtable({'e': 1, 'a': 2, 'b': 3, 'c': 4, 'd': 5}) 559 …ok = otTables.splitMultipleSubst(oldSubTable, newSubTable, OverflowErrorRecord((None, None, None, … 562 return oldSubTable.mapping, newSubTable.mapping 601 oldSubTable = buildMarkBasePosSubtable(marks, bases, glyphMap) 604 ok = otTables.splitMarkBasePos(oldSubTable, newSubTable, overflowRecord=None) 608 assert getXML(oldSubTable.toXML) == [
|