11 references to IsAsciiLetterUpper
Aspire.Hosting.Yarp (1)
YarpJsonConfigGeneratorBuilder.cs (1)
154
if (string.IsNullOrEmpty(name) || !char.
IsAsciiLetterUpper
(name[0]))
System.Console (3)
System\IO\KeyParser.cs (2)
157
|| (!char.
IsAsciiLetterUpper
(input[SequencePrefixLength + digitCount + 2]) && input[SequencePrefixLength + digitCount + 2] is not VtSequenceEndTag))
335
_ when char.
IsAsciiLetterUpper
(single) => UppercaseCharacter(single, out isShift),
System\TermInfo.cs (1)
401
if (char.
IsAsciiLetterUpper
(c))
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (1)
739
if (char.
IsAsciiLetterUpper
(name[i]))
src\libraries\System.Private.CoreLib\src\System\Globalization\IcuLocaleData.cs (1)
3816
lower_case[i] = char.
IsAsciiLetterUpper
(ch) ? (byte)(ch | 0x20) : (byte)ch;
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.cs (3)
656
output.Append((char)(char.
IsAsciiLetterUpper
(ascii[copyAscii]) ? ascii[copyAscii] - 'A' + 'a' : ascii[copyAscii]));
823
if (char.
IsAsciiLetterUpper
(cp))
855
if (char.
IsAsciiLetterUpper
(bcp))
src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (1)
399
if (char.
IsAsciiLetterUpper
(c))
System.Private.Uri (1)
System\DomainNameHelper.cs (1)
75
Debug.Assert(index == -1 || char.
IsAsciiLetterUpper
(str[start + index]));