11 references to fWhitespace
System.Xml (11)
System\Xml\Base64Decoder.cs (2)
163
if ( ( xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0 ) { // if ( xmlCharType.IsWhiteSpace(ch) ) {
196
if ( !( ( xmlCharType.charProperties[*pChar++] & XmlCharType.
fWhitespace
) != 0 ) ) { // if ( !( xmlCharType.IsWhiteSpace( chars[charPos++] ) ) ) {
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3107
if (pb[pos + 1] != 0 || (xmlCharType.charProperties[pb[pos]] & XmlCharType.
fWhitespace
) == 0)
System\Xml\BinHexDecoder.cs (1)
191
else if ( ( xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0 ) { // else if ( xmlCharType.IsWhiteSpace( ch ) ) {
System\Xml\Core\XmlTextReaderImpl.cs (2)
4006
isWs = ( ( xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0 );
4272
while ( ( ( xmlCharType.charProperties[tmpch0 = chars[pos]] & XmlCharType.
fWhitespace
) != 0 ) ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (2)
1841
isWs = ((xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0);
2147
while (((xmlCharType.charProperties[tmpch0 = chars[pos]] & XmlCharType.
fWhitespace
) != 0)) {
System\Xml\XmlCharType.cs (2)
499
return ( charProperties[ch] &
fWhitespace
) != 0;
684
if ( ( charProperties[str[i]] &
fWhitespace
) == 0 ) {
System\Xml\XmlConvert.cs (1)
593
return (xmlCharType.charProperties[ch] & XmlCharType.
fWhitespace
) != 0;