12 references to s_xmlCharType
dotnet-svcutil-lib (12)
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (12)
226
if ((!
s_xmlCharType
.IsStartNCNameCharXml4e(name[0]) && (local || (!local && name[0] != ':'))) ||
262
if ((local && !
s_xmlCharType
.IsNCNameCharXml4e(name[position])) ||
263
(!local && !
s_xmlCharType
.IsNameCharXml4e(name[position])) ||
573
int pos =
s_xmlCharType
.IsPublicId(publicId);
592
int pos =
s_xmlCharType
.IsOnlyWhitespaceWithPos(content);
611
return (
s_xmlCharType
.charProperties[ch] & XmlCharType.fNCStartNameSC) != 0;
624
return (
s_xmlCharType
.charProperties[ch] & XmlCharType.fNCNameSC) != 0;
636
return (
s_xmlCharType
.charProperties[ch] & XmlCharType.fCharData) != 0;
647
return
s_xmlCharType
.IsPubidChar(ch);
653
return (
s_xmlCharType
.charProperties[ch] & XmlCharType.fWhitespace) != 0;
1634
while (i < len && (
s_xmlCharType
.charProperties[data[i]] & XmlCharType.fCharData) != 0)
1676
while (i < endPos && (
s_xmlCharType
.charProperties[data[i]] & XmlCharType.fCharData) != 0)