Home | History | Annotate | Download | only in src

Lines Matching full:uc16

272   CharacterRange(uc16 from, uc16 to) : from_(from), to_(to) { }
273 static void AddClassEscape(uc16 type, ZoneList<CharacterRange>* ranges);
274 static Vector<const uc16> GetWordBounds();
275 static inline CharacterRange Singleton(uc16 value) {
278 static inline CharacterRange Range(uc16 from, uc16 to) {
285 bool Contains(uc16 i) { return from_ <= i && i <= to_; }
286 uc16 from() const { return from_; }
287 void set_from(uc16 value) { from_ = value; }
288 uc16 to() const { return to_; }
289 void set_to(uc16 value) { to_ = value; }
291 bool IsEverything(uc16 max) { return from_ == 0 && to_ >= max; }
295 Vector<const uc16> overlay,
335 uc16 from_;
336 uc16 to_;
376 Entry(uc16 from, uc16 to, OutSet* out_set)
378 uc16 from() { return from_; }
379 uc16 to() { return to_; }
380 void set_to(uc16 value) { to_ = value; }
384 uc16 from_;
385 uc16 to_;
391 typedef uc16 Key;
393 static const uc16 kNoKey;
395 static inline int Compare(uc16 a, uc16 b) {
406 OutSet* Get(uc16 value);
574 uc16 mask;
575 uc16 value;