Lines Matching refs:code_point
87 def compatibility_decompose(code_point): argument
115 code_point]['decomposition']
159 def special_ligature_decompose(code_point): argument
220 if code_point in special_ligature_decompose_dict:
221 return special_ligature_decompose_dict[code_point]
223 return [code_point]
228 for code_point in sorted(unicode_utils.UNICODE_ATTRIBUTES):
229 name = unicode_utils.UNICODE_ATTRIBUTES[code_point]['name']
230 decomposed_code_points = [compatibility_decompose(code_point)]
232 if special_decompose([code_point]) != [code_point]:
233 decomposed_code_points[0] = special_decompose([code_point])
256 unicode_utils.ucs_symbol(code_point)))
267 decomposed_code_points = special_ligature_decompose(code_point)
268 if decomposed_code_points[0] != code_point:
271 unicode_utils.ucs_symbol(code_point)))
280 code_point, name))