Lines Matching refs:codepoints
130 def codepoint_to_string(codepoints): argument
132 return ' '.join([to_hex_str(x) for x in codepoints])
181 codepoints = [hex_str_to_int(x) for x in line.split(';')[0].strip().split(' ')]
182 emojis_set.add(codepoint_to_string(codepoints).upper())
191 codepoints = [to_hex_str(x) for x in
193 emojis_set.update(codepoints)
208 def __init__(self, codepoints, is_emoji_style): argument
209 self.codepoints = codepoints
226 codepoint_to_string(self.codepoints))
237 json_element['codepoints'] = self.codepoints
243 row += [to_hex_str(x) for x in self.codepoints]
288 codepoints = []
293 codepoints.extend(codepoints_range)
295 codepoints.append(hex_str_to_int(codepoints_range))
296 return codepoints
326 codepoints = codepoints_for_emojirange(codepoints_range)
328 for codepoint in codepoints:
352 codepoints = [hex_str_to_int(x) for x in line.split(';')[0].strip().split(' ')]
353 codepoints = [x for x in codepoints if x != EMOJI_STYLE_VS]
354 key = codepoint_to_string(codepoints)
356 emoji_data = _EmojiData(codepoints, False)
476 def update_emoji_data(self, codepoints, glyph_name): argument
480 key = codepoint_to_string(codepoints)
547 codepoints = [glyph_to_codepoint_map[x] for x in glyph_names]
559 self.update_emoji_data(codepoints, glyph)
572 codepoints = [glyph_to_codepoint_map[x] for x in glyph_names]
573 self.update_emoji_data(codepoints, ligature.LigGlyph)