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