Home | History | Annotate | Download | only in src

Lines Matching refs:Is

2 // Use of this source code is governed by a BSD-style license that can be
26 static inline bool Is(uc32 c) {
29 default: return unibrow::Letter::Is(c);
36 static inline bool Is(uc32 c) {
37 return IdentifierStart::Is(c)
38 || unibrow::Number::Is(c)
39 || c == 0x200C // U+200C is Zero-Width Non-Joiner.
40 || c == 0x200D // U+200D is Zero-Width Joiner.
41 || unibrow::CombiningMark::Is(c)
42 || unibrow::ConnectorPunctuation::Is(c);
49 static inline bool Is(uc32 c) {
55 unibrow::WhiteSpace::Is(c);
62 static inline bool Is(uc32 c) {
63 return WhiteSpace::Is(c) || unibrow::LineTerminator::Is(c);