5 references to XmlCharType
Microsoft.CodeAnalysis (2)
Xml\XmlCharType.cs (2)
1109
if (i + 1 >= str.Length || !(
XmlCharType
.IsHighSurrogate(str[i]) &&
XmlCharType
.IsLowSurrogate(str[i + 1])))
Microsoft.CodeAnalysis.CSharp (2)
Parser\Lexer.cs (2)
3367
return
XmlCharType
.IsStartNCNameCharXml4e(ch);
3378
return
XmlCharType
.IsNCNameCharXml4e(ch);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
DocumentationComments\DocumentationCommentCompilerTests.cs (1)
4407
Assert.False(
XmlCharType
.IsWhiteSpace(ch));