12 references to xmlCharType
System.Xml (12)
System\Xml\XmlConvert.cs (12)
206
if ( ( !
xmlCharType
.IsStartNCNameCharXml4e( name[0] ) && (local || (!local && name[0] != ':'))) ||
239
if ((local && !
xmlCharType
.IsNCNameCharXml4e(name[position])) ||
240
(!local && !
xmlCharType
.IsNameCharXml4e(name[position])) ||
508
int pos =
xmlCharType
.IsPublicId(publicId);
524
int pos =
xmlCharType
.IsOnlyWhitespaceWithPos(content);
544
return (
xmlCharType
.charProperties[ch] & XmlCharType.fNCStartNameSC) != 0;
560
return (
xmlCharType
.charProperties[ch] & XmlCharType.fNCNameSC) != 0;
575
return (
xmlCharType
.charProperties[ch] & XmlCharType.fCharData) != 0;
585
return
xmlCharType
.IsPubidChar(ch);
593
return (
xmlCharType
.charProperties[ch] & XmlCharType.fWhitespace) != 0;
1475
while ( i < len && (
xmlCharType
.charProperties[data[i]] & XmlCharType.fCharData ) != 0 ) {
1516
while ( i < endPos && (
xmlCharType
.charProperties[data[i]] & XmlCharType.fCharData ) != 0 ) {