Lines Matching refs:groups
9 def convertUFO1OrUFO2KerningToUFO3Kerning(kerning, groups, glyphSet=()): argument
11 firstReferencedGroups, secondReferencedGroups = findKnownKerningGroups(groups)
14 if first in groups and first not in glyphSet:
18 if second in groups and second not in glyphSet:
25 existingGroupNames = list(groups.keys()) + list(firstRenamedGroups.keys())
37 existingGroupNames = list(groups.keys()) + list(secondRenamedGroups.keys())
60 group = list(groups[oldName])
61 groups[newName] = group
63 return newKerning, groups, dict(side1=firstRenamedGroups, side2=secondRenamedGroups)
65 def findKnownKerningGroups(groups): argument
104 for groupName in list(groups.keys()):