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