Home | History | Annotate | Download | only in src

Lines Matching full:uc16

263   CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) { }
264 static void AddClassEscape(uc16 type, ZoneList<CharacterRange>* ranges,
267 static inline CharacterRange Singleton(uc16 value) {
270 static inline CharacterRange Range(uc16 from, uc16 to) {
277 bool Contains(uc16 i) { return from_ <= i && i <= to_; }
278 uc16 from() const { return from_; }
279 void set_from(uc16 value) { from_ = value; }
280 uc16 to() const { return to_; }
281 void set_to(uc16 value) { to_ = value; }
283 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
308 uc16 from_;
309 uc16 to_;
351 Entry(uc16 from, uc16 to, OutSet* out_set)
353 uc16 from() { return from_; }
354 uc16 to() { return to_; }
355 void set_to(uc16 value) { to_ = value; }
361 uc16 from_;
362 uc16 to_;
368 typedef uc16 Key;
370 static const uc16 kNoKey;
372 static inline int Compare(uc16 a, uc16 b) {
383 OutSet* Get(uc16 value);
557 uc16 mask;
558 uc16 value;