8 references to fCharData
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3539
if ((xmlCharType.charProperties[ch] & XmlCharType.
fCharData
) == 0)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextEncoder.cs (1)
432
((_xmlCharType.charProperties[ch = text[i]] & XmlCharType.
fCharData
) != 0 // ( xmlCharType.IsCharData( ( ch = text[i] ) )
FrameworkFork\Microsoft.Xml\Xml\XmlCharType.cs (3)
447
SetProperties(s_CharData,
fCharData
);
560
return (charProperties[ch] &
fCharData
) != 0;
686
if ((charProperties[str[i]] &
fCharData
) == 0)
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (3)
636
return (s_xmlCharType.charProperties[ch] & XmlCharType.
fCharData
) != 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)