18 references to IsTextChar
System.Private.Xml (18)
System\Xml\Core\XmlEncodedRawTextWriter.cs (3)
1224
while (pDst < pDstEnd && XmlCharType.
IsTextChar
((char)(ch = *pSrc)))
1344
while (pDst < pDstEnd && (XmlCharType.
IsTextChar
((char)(ch = *pSrc)) && ch != stopChar))
1860
if (!XmlCharType.
IsTextChar
(chars[i]))
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (2)
1361
while (pDst < pDstEnd && XmlCharType.
IsTextChar
((char)(ch = *pSrc)))
1563
while (pDst < pDstEnd && (XmlCharType.
IsTextChar
((char)(ch = *pSrc)) && ch != stopChar))
System\Xml\Core\XmlTextReaderImpl.cs (3)
5550
while (XmlCharType.
IsTextChar
(c = chars[pos]))
6317
while (XmlCharType.
IsTextChar
(tmpch = chars[pos]) && tmpch != '?')
6523
while (XmlCharType.
IsTextChar
(tmpch = chars[pos]) && tmpch != stopChar)
System\Xml\Core\XmlTextReaderImplAsync.cs (3)
3249
while (XmlCharType.
IsTextChar
(c = chars[pos]))
4040
while (XmlCharType.
IsTextChar
(tmpch = chars[pos]) && tmpch != '?')
4265
while (XmlCharType.
IsTextChar
(tmpch = chars[pos]) && tmpch != stopChar)
System\Xml\Core\XmlUtf8RawTextWriter.cs (3)
1040
while (pDst < pDstEnd && XmlCharType.
IsTextChar
((char)(ch = *pSrc)) && ch <= 0x7F)
1159
while (pDst < pDstEnd && XmlCharType.
IsTextChar
((char)(ch = *pSrc)) && ch != stopChar && ch <= 0x7F)
1722
if (!XmlCharType.
IsTextChar
(chars[i]))
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (2)
1229
while (pDst < pDstEnd && XmlCharType.
IsTextChar
((char)(ch = *pSrc)) && ch <= 0x7F)
1430
while (pDst < pDstEnd && XmlCharType.
IsTextChar
((char)(ch = *pSrc)) && ch != stopChar && ch <= 0x7F)
System\Xml\Schema\DtdParser.cs (1)
2856
while (XmlCharType.
IsTextChar
(_chars[_curPos]) && _chars[_curPos] != ']')
System\Xml\Schema\DtdParserAsync.cs (1)
2270
while (XmlCharType.
IsTextChar
(_chars[_curPos]) && _chars[_curPos] != ']')