10 references to fWhitespace
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Base64Decoder.cs (2)
183
if ((xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0)
224
if (!((xmlCharType.charProperties[*pChar++] & XmlCharType.
fWhitespace
) != 0))
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3524
if (pb[pos + 1] != 0 || (xmlCharType.charProperties[pb[pos]] & XmlCharType.
fWhitespace
) == 0)
FrameworkFork\Microsoft.Xml\Xml\BinHexDecoder.cs (1)
213
else if ((xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (2)
4484
isWs = ((_xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0);
4786
while (((_xmlCharType.charProperties[tmpch0 = chars[pos]] & XmlCharType.
fWhitespace
) != 0))
FrameworkFork\Microsoft.Xml\Xml\XmlCharType.cs (3)
443
SetProperties(s_Whitespace,
fWhitespace
);
491
return (charProperties[ch] &
fWhitespace
) != 0;
671
if ((charProperties[str[i]] &
fWhitespace
) == 0)
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (1)
653
return (s_xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0;