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