10 references to HIGH_SURROGATE_START
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (5)
879
return IsBetween(c, CharUnicodeInfo.
HIGH_SURROGATE_START
, CharUnicodeInfo.LOW_SURROGATE_END);
1018
return IsBetween(c, CharUnicodeInfo.
HIGH_SURROGATE_START
, CharUnicodeInfo.HIGH_SURROGATE_END);
1086
uint highSurrogateOffset = (uint)highSurrogate - CharUnicodeInfo.
HIGH_SURROGATE_START
;
1121
uint highSurrogateOffset = (uint)highSurrogate - CharUnicodeInfo.
HIGH_SURROGATE_START
;
1179
int temp1 = s[index] - CharUnicodeInfo.
HIGH_SURROGATE_START
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CharUnicodeInfo.cs (3)
66
int temp1 = c -
HIGH_SURROGATE_START
; // temp1 = 000000wwwwxxxxxx
105
int temp1 = c -
HIGH_SURROGATE_START
; // temp1 = 000000wwwwxxxxxx
448
int temp1 = codePoint -
HIGH_SURROGATE_START
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\Normalization.Icu.cs (2)
219
int i = s.IndexOfAnyInRange(CharUnicodeInfo.
HIGH_SURROGATE_START
, Noncharacter);
225
if (c < CharUnicodeInfo.
HIGH_SURROGATE_START
)