Home
last modified time | relevance | path

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

/external/libchrome/base/strings/
Dstring16_unittest.cc37 string16 surrogate_pair; in TEST() local
38 surrogate_pair.push_back(0xd800); in TEST()
39 surrogate_pair.push_back(0xdf00); in TEST()
40 surrogate_pair.push_back('z'); in TEST()
49 << surrogate_pair << "," << unterminated_surrogate; in TEST()
/external/v8/src/regexp/
Dregexp-parser.cc1067 ZoneList<uc16> surrogate_pair(2, zone()); in AddUnicodeCharacter() local
1068 surrogate_pair.Add(unibrow::Utf16::LeadSurrogate(c), zone()); in AddUnicodeCharacter()
1069 surrogate_pair.Add(unibrow::Utf16::TrailSurrogate(c), zone()); in AddUnicodeCharacter()
1070 RegExpAtom* atom = new (zone()) RegExpAtom(surrogate_pair.ToConstVector()); in AddUnicodeCharacter()