17 references to fText
System.Xml (17)
System\Xml\Core\XmlEncodedRawTextWriter.cs (2)
1074
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) ) ) {
1169
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) && ch != stopChar ) ) {
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (2)
1064
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) ) ) {
1237
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) && ch != stopChar ) ) {
System\Xml\Core\XmlTextReaderImpl.cs (3)
5069
while ( ( ( xmlCharType.charProperties[c = chars[pos]] & XmlCharType.
fText
) != 0 ) ) {
5745
while ( ( ( xmlCharType.charProperties[tmpch = chars[pos]] & XmlCharType.
fText
) != 0 ) &&
5923
while ( ( ( xmlCharType.charProperties[tmpch = chars[pos]] & XmlCharType.
fText
) != 0 ) &&
System\Xml\Core\XmlTextReaderImplAsync.cs (3)
3042
while (((xmlCharType.charProperties[c = chars[pos]] & XmlCharType.
fText
) != 0)) {
3762
while (((xmlCharType.charProperties[tmpch = chars[pos]] & XmlCharType.
fText
) != 0) &&
3971
while (((xmlCharType.charProperties[tmpch = chars[pos]] & XmlCharType.
fText
) != 0) &&
System\Xml\Core\XmlUtf8RawTextWriter.cs (2)
934
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) && ch <= 0x7F ) ) {
1029
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) && ch != stopChar && ch <= 0x7F ) ) {
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (2)
981
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) && ch <= 0x7F ) ) {
1154
while ( pDst < pDstEnd && ( ( ( xmlCharType.charProperties[( ch = *pSrc )] & XmlCharType.
fText
) != 0 ) && ch != stopChar && ch <= 0x7F ) ) {
System\Xml\Schema\DtdParser.cs (1)
2721
while ( ( xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fText
) != 0 && chars[curPos] != ']' ) {
System\Xml\Schema\DtdParserAsync.cs (1)
2152
while ((xmlCharType.charProperties[chars[curPos]] & XmlCharType.
fText
) != 0 && chars[curPos] != ']') {
System\Xml\XmlCharType.cs (1)
593
return ( charProperties[ch] &
fText
) != 0;