Home | History | Annotate | Download | only in src

Lines Matching refs:unibrow

148   typedef unibrow::Utf8InputBuffer<1024> Utf8Decoder;
154 bool IsIdentifierStart(unibrow::uchar c) { return kIsIdentifierStart.get(c); }
155 bool IsIdentifierPart(unibrow::uchar c) { return kIsIdentifierPart.get(c); }
156 bool IsLineTerminator(unibrow::uchar c) { return kIsLineTerminator.get(c); }
157 bool IsWhiteSpace(unibrow::uchar c) { return kIsWhiteSpace.get(c); }
160 unibrow::Predicate<IdentifierStart, 128> kIsIdentifierStart;
161 unibrow::Predicate<IdentifierPart, 128> kIsIdentifierPart;
162 unibrow::Predicate<unibrow::LineTerminator, 128> kIsLineTerminator;
163 unibrow::Predicate<unibrow::WhiteSpace, 128> kIsWhiteSpace;
318 typedef unibrow::Utf8InputBuffer<1024> Utf8Decoder;
437 static bool IsIdentifier(unibrow::CharacterStream* buffer);