Home | History | Annotate | Download | only in regexp

Lines Matching full:code_unit

714 static void push_code_unit(ZoneVector<uc16>* v, uint32_t code_unit) {
715 if (code_unit <= unibrow::Utf16::kMaxNonSurrogateCharCode) {
716 v->push_back(code_unit);
718 v->push_back(unibrow::Utf16::LeadSurrogate(code_unit));
719 v->push_back(unibrow::Utf16::TrailSurrogate(code_unit));