Lines Matching defs:upper
27 upper: int = -1
39 r"^(?P<lower>[0-9A-F]{4,5})(?:\.\.(?P<upper>[0-9A-F]{4,5}))?\s*;\s*InCB;\s*(?P<prop>\w+)"
45 lower_str, upper_str, result.prop = m.group("lower", "upper", "prop")
47 result.upper = result.lower
49 result.upper = int(upper_str, base=16)
69 and result[-1].upper + 1 == x.lower
71 result[-1].upper = x.upper
98 /// - bits [11, 31] The lower bound code point of the range. The upper bound of
115 // The algorithm searches for the upper bound of the range and, when found,
128 // size. Then the upper bound for code point 3 will return the entry after
242 high = range.upper
245 e = Entry(range.lower, range.upper - range.lower, props.index(range.prop))