20 references to IsWhiteSpace
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEncodedRawTextWriter.cs (1)
1534
Debug.Assert(!xmlCharType.
IsWhiteSpace
((char)ch));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextEncoder.cs (2)
233
Debug.Assert((ch < 0x20 && !_xmlCharType.
IsWhiteSpace
(ch)) || (ch > 0xFFFD));
392
Debug.Assert((ch < 0x20 && !_xmlCharType.
IsWhiteSpace
(ch)) || (ch > 0xFFFD));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (8)
4688
while (_xmlCharType.
IsWhiteSpace
(tmpCh = chars[pos]))
5747
if (!_xmlCharType.
IsWhiteSpace
(chars[charRefEndPos - charCount]) ||
5776
if (!_xmlCharType.
IsWhiteSpace
(_ps.chars[pos - 1]))
6806
if (!_xmlCharType.
IsWhiteSpace
(_ps.chars[_ps.charPos + 7]))
8522
(_ps.chars[endPos] == '>' || _xmlCharType.
IsWhiteSpace
(_ps.chars[endPos])))
8531
if (_xmlCharType.
IsWhiteSpace
(_ps.chars[endPos]))
8562
(_ps.chars[endPos] == '>' || _ps.chars[endPos] == '/' || _xmlCharType.
IsWhiteSpace
(_ps.chars[endPos])))
8770
if (_normalize && _xmlCharType.
IsWhiteSpace
(chars[_ps.charPos]) && pos - _ps.charPos == 1)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlUtf8RawTextWriter.cs (1)
1382
Debug.Assert(!xmlCharType.
IsWhiteSpace
((char)ch));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriterHelpers.cs (2)
436
while (bufChunk.index < endIndex && xmlCharType.
IsWhiteSpace
(bufChunk.buffer[bufChunk.index]))
474
while (bufChunk.count > 0 && xmlCharType.
IsWhiteSpace
(bufChunk.buffer[bufChunk.index + bufChunk.count - 1]))
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (1)
1622
if (!_xmlCharType.
IsWhiteSpace
(_chars[_curPos + 1]))
FrameworkFork\Microsoft.Xml\Xml\XmlComplianceUtil.cs (3)
30
while (xmlCharType.
IsWhiteSpace
(value[startPos]))
42
if (!xmlCharType.
IsWhiteSpace
(value[i]))
49
while (j < len && xmlCharType.
IsWhiteSpace
(value[j]))
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\StringFunctions.cs (1)
232
if (!xmlCharType.
IsWhiteSpace
(str1[count]))
FrameworkFork\Microsoft.Xml\Xml\XPath\Internal\XPathScanner.cs (1)
126
while (_xmlCharType.
IsWhiteSpace
(this.CurerntChar) && NextChar()) ;