Lines Matching refs:uc32
90 static inline CharacterRange Singleton(uc32 value) { in Singleton()
93 static inline CharacterRange Range(uc32 from, uc32 to) { in Range()
108 bool Contains(uc32 i) { return from_ <= i && i <= to_; } in Contains()
109 uc32 from() const { return from_; } in from()
110 void set_from(uc32 value) { from_ = value; } in set_from()
111 uc32 to() const { return to_; } in to()
112 void set_to(uc32 value) { to_ = value; } in set_to()
114 bool IsEverything(uc32 max) { return from_ == 0 && to_ >= max; } in IsEverything()
134 CharacterRange(uc32 from, uc32 to) : from_(from), to_(to) {} in CharacterRange()
136 uc32 from_;
137 uc32 to_;