Home
last modified time | relevance | path

Searched refs:surrogate_pair (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/base/strings/
Dstring16_unittest.cc36 string16 surrogate_pair; in TEST() local
37 surrogate_pair.push_back(0xd800); in TEST()
38 surrogate_pair.push_back(0xdf00); in TEST()
39 surrogate_pair.push_back('z'); in TEST()
48 << surrogate_pair << "," << unterminated_surrogate; in TEST()
/external/v8/src/regexp/
Dregexp-parser.cc1742 ZoneList<uc16> surrogate_pair(2, zone()); in AddTrailSurrogate() local
1743 surrogate_pair.Add(lead_surrogate, zone()); in AddTrailSurrogate()
1744 surrogate_pair.Add(trail_surrogate, zone()); in AddTrailSurrogate()
1746 new (zone()) RegExpAtom(surrogate_pair.ToConstVector(), flags_); in AddTrailSurrogate()