Home | History | Annotate | Download | only in src

Lines Matching refs:Is

16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
47 static inline bool Is(uc32 c) {
50 default: return unibrow::Letter::Is(c);
57 static inline bool Is(uc32 c) {
58 return IdentifierStart::Is(c)
59 || unibrow::Number::Is(c)
60 || c == 0x200C // U+200C is Zero-Width Non-Joiner.
61 || c == 0x200D // U+200D is Zero-Width Joiner.
62 || unibrow::CombiningMark::Is(c)
63 || unibrow::ConnectorPunctuation::Is(c);