Lines Matching refs:end
94 for start, end in EMOJI_ZERO_WIDTH:
95 for cp in range(start, end + 1):
100 start, end = REGIONAL_INDICATORS
101 for cp in range(start, end + 1):
153 for start, end in EMOJI_RANGES:
154 for cp in range(start, end + 1):
204 for start, end in ranges:
205 if end <= 0xFFFF:
206 bmp_ranges.append((start, end))
208 non_bmp_ranges.append((start, end))
212 non_bmp_ranges.append((0x10000, end))
221 def get_code_point_comment(start, end): argument
224 if start == end:
227 end_char_desc = unicodedata.name(chr(end))
230 if start == end:
251 for start, end in zero_width_bmp:
252 comment = get_code_point_comment(start, end)
262 for start, end in zero_width_non_bmp:
263 comment = get_code_point_comment(start, end)
273 for start, end in double_width_bmp:
274 comment = get_code_point_comment(start, end)
284 for start, end in double_width_non_bmp:
285 comment = get_code_point_comment(start, end)
302 zero_width_count = sum(end - start + 1 for start, end in zero_width_ranges)
303 double_width_count = sum(end - start + 1 for start, end in double_width_ranges)