Lines Matching refs:glyphElement
609 … glyphElement = self._writeGlyphElement(instanceElement, instanceObject, glyphName, data)
610 glyphsElement.append(glyphElement)
662 glyphElement = ET.Element("glyph")
663 glyphElement.attrib["name"] = name
664 glyphElement.attrib["mute"] = '1'
665 sourceElement.append(glyphElement)
676 glyphElement = ET.Element('glyph')
678 glyphElement.attrib['mute'] = "1"
680 glyphElement.attrib['unicode'] = " ".join([hex(u) for u in data.get('unicodes')])
683 glyphElement.append(locationElement)
685 glyphElement.attrib['name'] = glyphName
689 glyphElement.append(noteElement)
702 glyphElement.append(mastersElement)
703 return glyphElement
870 for glyphElement in sourceElement.findall(".glyph"):
871 glyphName = glyphElement.attrib.get('name')
874 if glyphElement.attrib.get('mute') == '1':
973 for glyphElement in instanceElement.findall('.glyphs/glyph'):
974 self.readGlyphElement(glyphElement, instanceObject)
994 def readGlyphElement(self, glyphElement, instanceObject): argument
1008 glyphName = glyphElement.attrib.get('name')
1011 mute = glyphElement.attrib.get("mute")
1015 unicodes = glyphElement.attrib.get('unicode')
1023 for noteElement in glyphElement.findall('.note'):
1026 instanceLocation = self.locationFromElement(glyphElement)
1030 for masterElement in glyphElement.findall('.masters/master'):