OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:surrogate_pair
(Results
1 - 4
of
4
) sorted by null
/external/libchrome/base/strings/
string16_unittest.cc
37
string16
surrogate_pair
;
local
38
surrogate_pair
.push_back(0xd800);
39
surrogate_pair
.push_back(0xdf00);
40
surrogate_pair
.push_back('z');
49
<<
surrogate_pair
<< "," << unterminated_surrogate;
/art/runtime/
utf-inl.h
62
uint32_t
surrogate_pair
= 0;
local
65
surrogate_pair
|= ((code_point >> 10) + 0xd7c0) & 0xffff;
67
surrogate_pair
|= ((code_point & 0x03ff) + 0xdc00) << 16;
69
return
surrogate_pair
;
/external/v8/src/regexp/
regexp-parser.cc
1067
ZoneList<uc16>
surrogate_pair
(2, zone());
1068
surrogate_pair
.Add(unibrow::Utf16::LeadSurrogate(c), zone());
1069
surrogate_pair
.Add(unibrow::Utf16::TrailSurrogate(c), zone());
1070
RegExpAtom* atom = new (zone()) RegExpAtom(
surrogate_pair
.ToConstVector());
[
all
...]
/libcore/ojluni/src/main/java/java/lang/
Character.java
[
all
...]
Completed in 353 milliseconds