Home | History | Annotate | Download | only in ufoLib

Lines Matching refs:unicodes

321 			"unicodes"   a list of unicode values for this glyph
365 "unicodes" a list of unicode values for this glyph
467 unicodes = {}
472 unicodes[glyphName] = _fetchUnicodes(text)
473 return unicodes
547 "unicodes" a list of unicode values for this glyph
589 # unicodes
590 if getattr(glyphObject, "unicodes", None):
634 "unicodes" a list of unicode values for this glyph
685 unicodes = getattr(glyphObject, "unicodes", None)
686 if validate and isinstance(unicodes, integerTypes):
687 unicodes = [unicodes]
689 for code in unicodes:
905 unicodes = []
929 if v not in unicodes:
930 unicodes.append(v)
945 # set the collected unicodes
946 if unicodes:
947 _relaxedSetattr(glyphObject, "unicodes", unicodes)
953 unicodes = []
981 if v not in unicodes:
982 unicodes.append(v)
1021 # set the collected unicodes
1022 if unicodes:
1023 _relaxedSetattr(glyphObject, "unicodes", unicodes)
1412 # unicodes
1416 unicodes listed in glif.
1420 return parser.unicodes
1425 self.unicodes = []
1434 if value not in self.unicodes:
1435 self.unicodes.append(value)