10 references to fText
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEncodedRawTextWriter.cs (2)
1176while (pDst < pDstEnd && (((xmlCharType.charProperties[(ch = *pSrc)] & XmlCharType.fText) != 0))) 1278while (pDst < pDstEnd && (((xmlCharType.charProperties[(ch = *pSrc)] & XmlCharType.fText) != 0) && ch != stopChar))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (3)
5672while (((_xmlCharType.charProperties[c = chars[pos]] & XmlCharType.fText) != 0)) 6436while (((_xmlCharType.charProperties[tmpch = chars[pos]] & XmlCharType.fText) != 0) && 6643while (((_xmlCharType.charProperties[tmpch = chars[pos]] & XmlCharType.fText) != 0) &&
FrameworkFork\Microsoft.Xml\Xml\Core\XmlUtf8RawTextWriter.cs (2)
1011while (pDst < pDstEnd && (((xmlCharType.charProperties[(ch = *pSrc)] & XmlCharType.fText) != 0) && ch <= 0x7F)) 1113while (pDst < pDstEnd && (((xmlCharType.charProperties[(ch = *pSrc)] & XmlCharType.fText) != 0) && ch != stopChar && ch <= 0x7F))
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (1)
2894while ((_xmlCharType.charProperties[_chars[_curPos]] & XmlCharType.fText) != 0 && _chars[_curPos] != ']')
FrameworkFork\Microsoft.Xml\Xml\XmlCharType.cs (2)
449SetProperties(s_Text, fText); 577return (charProperties[ch] & fText) != 0;