Lines Matching refs:clipBox
1346 for glyphName, clipBox in self.clips.items():
1347 key = clipBox.as_tuple()
1350 uniqueClips[key] = clipBox
1361 for glyphs, clipBox in self.groups().items():
1378 clipBoxRanges[(start, end)] = clipBox
1381 for (start, end), clipBox in sorted(clipBoxRanges.items()):
1385 record.ClipBox = clipBox
1402 for glyphs, clipBox in sorted(
1410 xmlWriter.begintag("ClipBox", [("Format", clipBox.Format)])
1412 clipBox.toXML2(xmlWriter, font)
1426 clipBox = None
1434 clipBox = ClipBox()
1435 clipBox.Format = safeEval(attrs["Format"])
1440 clipBox.fromXML(name, attrs, content, font)
1441 if clipBox:
1443 clips[glyphName] = clipBox