26 references to IsLowSurrogate
dotnet-svcutil-lib (26)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3555
if (!XmlCharType.
IsLowSurrogate
(chNext))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEncodedRawTextWriter.cs (2)
1759
if (XmlCharType.
IsLowSurrogate
(chars[i + 1]))
1768
else if (XmlCharType.
IsLowSurrogate
(chars[i]))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextEncoder.cs (6)
106
if (!XmlCharType.
IsLowSurrogate
(lowChar) ||
227
else if (XmlCharType.
IsLowSurrogate
(ch))
244
if (!XmlCharType.
IsLowSurrogate
(lowChar) ||
386
else if (XmlCharType.
IsLowSurrogate
(ch))
447
if (XmlCharType.
IsLowSurrogate
(lowChar))
459
else if (XmlCharType.
IsLowSurrogate
(ch))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (7)
5418
if (XmlCharType.
IsLowSurrogate
(chars[pos]))
5817
if (XmlCharType.
IsLowSurrogate
(chars[pos]))
6541
if (XmlCharType.
IsLowSurrogate
(chars[pos]))
6758
if (XmlCharType.
IsLowSurrogate
(chars[pos]))
7147
if (XmlCharType.
IsLowSurrogate
(chars[pos]))
7440
if (XmlCharType.
IsLowSurrogate
(low))
8810
if (XmlCharType.
IsLowSurrogate
(chars[pos]))
FrameworkFork\Microsoft.Xml\Xml\Core\XmlUtf8RawTextWriter.cs (2)
1639
if (XmlCharType.
IsLowSurrogate
(chars[i + 1]))
1648
else if (XmlCharType.
IsLowSurrogate
(chars[i]))
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (2)
2625
if (XmlCharType.
IsLowSurrogate
(_chars[_curPos]))
2980
if (XmlCharType.
IsLowSurrogate
(_chars[_curPos]))
FrameworkFork\Microsoft.Xml\Xml\XmlCharType.cs (1)
688
if (i + 1 >= str.Length || !(XmlCharType.IsHighSurrogate(str[i]) && XmlCharType.
IsLowSurrogate
(str[i + 1])))
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (5)
234
if (length > 1 && XmlCharType.IsHighSurrogate(name[0]) && XmlCharType.
IsLowSurrogate
(name[1]))
279
if ((length > position + 1) && XmlCharType.IsHighSurrogate(name[position]) && XmlCharType.
IsLowSurrogate
(name[position + 1]))
641
return XmlCharType.IsHighSurrogate(highChar) && XmlCharType.
IsLowSurrogate
(lowChar);
1651
if (XmlCharType.
IsLowSurrogate
(ch))
1693
if (XmlCharType.
IsLowSurrogate
(ch))