17 references to IsAsciiLetterUpper
Aspire.Hosting.Yarp (1)
YarpJsonConfigGeneratorBuilder.cs (1)
154if (string.IsNullOrEmpty(name) || !char.IsAsciiLetterUpper(name[0]))
BuildActionTelemetryTable (5)
RegexGenerator.g.cs (5)
149if (slice.IsEmpty || !char.IsAsciiLetterUpper(slice[0])) 177if ((uint)(pos - 1) >= inputSpan.Length || !char.IsAsciiLetterUpper(inputSpan[pos - 1])) 198!char.IsAsciiLetterUpper(slice[0]) || // Match a character in the set [A-Z]. 228if ((uint)(pos - 1) >= inputSpan.Length || char.IsAsciiLetterUpper(inputSpan[pos - 1])) 249if (slice.IsEmpty || !char.IsAsciiLetterUpper(slice[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)
401if (char.IsAsciiLetterUpper(c))
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (1)
733if (char.IsAsciiLetterUpper(name[i]))
src\libraries\System.Private.CoreLib\src\System\Globalization\IcuLocaleData.cs (1)
3816lower_case[i] = char.IsAsciiLetterUpper(ch) ? (byte)(ch | 0x20) : (byte)ch;
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.cs (3)
656output.Append((char)(char.IsAsciiLetterUpper(ascii[copyAscii]) ? ascii[copyAscii] - 'A' + 'a' : ascii[copyAscii])); 823if (char.IsAsciiLetterUpper(cp)) 855if (char.IsAsciiLetterUpper(bcp))
src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (1)
430if (char.IsAsciiLetterUpper(c))
System.Private.Uri (2)
System\DomainNameHelper.cs (1)
75Debug.Assert(index == -1 || char.IsAsciiLetterUpper(str[start + index]));
System\Uri.cs (1)
3200if (char.IsAsciiLetterUpper(c))