10 references to HIGH_SURROGATE_START
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Char.cs (5)
812
return IsBetween(c, CharUnicodeInfo.
HIGH_SURROGATE_START
, CharUnicodeInfo.LOW_SURROGATE_END);
951
return IsBetween(c, CharUnicodeInfo.
HIGH_SURROGATE_START
, CharUnicodeInfo.HIGH_SURROGATE_END);
1019
uint highSurrogateOffset = (uint)highSurrogate - CharUnicodeInfo.
HIGH_SURROGATE_START
;
1054
uint highSurrogateOffset = (uint)highSurrogate - CharUnicodeInfo.
HIGH_SURROGATE_START
;
1112
int temp1 = s[index] - CharUnicodeInfo.
HIGH_SURROGATE_START
;
src\libraries\System.Private.CoreLib\src\System\Globalization\CharUnicodeInfo.cs (2)
66
int temp1 = c -
HIGH_SURROGATE_START
; // temp1 = 000000wwwwxxxxxx
422
int temp1 = codePoint -
HIGH_SURROGATE_START
;
src\libraries\System.Private.CoreLib\src\System\Globalization\Normalization.Icu.cs (2)
225
int i = s.IndexOfAnyInRange(CharUnicodeInfo.
HIGH_SURROGATE_START
, Noncharacter);
231
if (c < CharUnicodeInfo.
HIGH_SURROGATE_START
)
src\libraries\System.Private.CoreLib\src\System\SearchValues\Strings\StringSearchValues.cs (1)
487
int i = value.AsSpan().IndexOfAnyInRange(CharUnicodeInfo.
HIGH_SURROGATE_START
, CharUnicodeInfo.LOW_SURROGATE_END);