42 references to IsWhiteSpace
System.Private.Xml (42)
System\Xml\Base64Decoder.cs (2)
139
if (XmlCharType.
IsWhiteSpace
(ch))
178
if (!XmlCharType.
IsWhiteSpace
(chars[iChar++]))
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
3503
if (value > byte.MaxValue || !XmlCharType.
IsWhiteSpace
((char)value))
System\Xml\BinHexDecoder.cs (1)
159
else if (XmlCharType.
IsWhiteSpace
(ch))
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
1636
Debug.Assert(!XmlCharType.
IsWhiteSpace
((char)ch));
System\Xml\Core\XmlTextEncoder.cs (2)
208
Debug.Assert((ch < 0x20 && !XmlCharType.
IsWhiteSpace
(ch)) || (ch > 0xFFFD));
364
Debug.Assert((ch < 0x20 && !XmlCharType.
IsWhiteSpace
(ch)) || (ch > 0xFFFD));
System\Xml\Core\XmlTextReaderImpl.cs (10)
4392
bool isWs = XmlCharType.
IsWhiteSpace
(ch);
4589
while (XmlCharType.
IsWhiteSpace
(tmpCh = chars[pos]))
4686
while (XmlCharType.
IsWhiteSpace
(tmpch0 = chars[pos]))
5624
if (!XmlCharType.
IsWhiteSpace
(chars[charRefEndPos - charCount]) ||
5653
if (!XmlCharType.
IsWhiteSpace
(_ps.chars[pos - 1]))
6687
if (!XmlCharType.
IsWhiteSpace
(_ps.chars[_ps.charPos + 7]))
8380
(_ps.chars[endPos] == '>' || XmlCharType.
IsWhiteSpace
(_ps.chars[endPos])))
8389
if (XmlCharType.
IsWhiteSpace
(_ps.chars[endPos]))
8419
(_ps.chars[endPos] == '>' || _ps.chars[endPos] == '/' || XmlCharType.
IsWhiteSpace
(_ps.chars[endPos])))
8627
if (_normalize && XmlCharType.
IsWhiteSpace
(chars[_ps.charPos]) && pos - _ps.charPos == 1)
System\Xml\Core\XmlTextReaderImplAsync.cs (6)
1987
isWs = XmlCharType.
IsWhiteSpace
(ch);
2212
while (XmlCharType.
IsWhiteSpace
(tmpCh = chars[pos]))
2319
while (XmlCharType.
IsWhiteSpace
(tmpch0 = chars[pos]))
3365
if (!XmlCharType.
IsWhiteSpace
(chars[charRefEndPos - charCount]) ||
3403
if (!XmlCharType.
IsWhiteSpace
(_ps.chars[pos - 1]))
4428
if (!XmlCharType.
IsWhiteSpace
(_ps.chars[_ps.charPos + 7]))
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
1463
Debug.Assert(!XmlCharType.
IsWhiteSpace
((char)ch));
System\Xml\Core\XmlWellFormedWriterHelpers.cs (2)
437
while (bufChunk.index < endIndex && XmlCharType.
IsWhiteSpace
(bufChunk.buffer[bufChunk.index]))
477
while (bufChunk.count > 0 && XmlCharType.
IsWhiteSpace
(bufChunk.buffer[bufChunk.index + bufChunk.count - 1]))
System\Xml\Schema\DtdParser.cs (1)
1598
if (!XmlCharType.
IsWhiteSpace
(_chars[_curPos + 1]))
System\Xml\Schema\DtdParserAsync.cs (1)
1225
if (!XmlCharType.
IsWhiteSpace
(_chars[_curPos + 1]))
System\Xml\XmlCharType.cs (1)
25
Debug.Assert(WhiteSpaceChars.Contains(c) ==
IsWhiteSpace
(c));
System\Xml\XmlComplianceUtil.cs (3)
25
while (XmlCharType.
IsWhiteSpace
(value[startPos]))
37
if (!XmlCharType.
IsWhiteSpace
(value[i]))
44
while (j < len && XmlCharType.
IsWhiteSpace
(value[j]))
System\Xml\XmlConvert.cs (1)
574
return XmlCharType.
IsWhiteSpace
(ch);
System\Xml\XPath\Internal\StringFunctions.cs (1)
234
if (!XmlCharType.
IsWhiteSpace
(chars[comparePos]))
System\Xml\XPath\Internal\XPathScanner.cs (3)
114
if (XmlCharType.
IsWhiteSpace
(CurrentChar))
122
Debug.Assert(XmlCharType.
IsWhiteSpace
(CurrentChar));
123
while (NextChar() && XmlCharType.
IsWhiteSpace
(CurrentChar));
System\Xml\Xsl\Runtime\XsltFunctions.cs (1)
108
if (XmlCharType.
IsWhiteSpace
(value[idx]))
System\Xml\Xsl\XPath\XPathScanner.cs (1)
184
while (XmlCharType.
IsWhiteSpace
(_curChar))
System\Xml\Xsl\XslException.cs (1)
208
if (message.Length > 0 && !XmlCharType.
IsWhiteSpace
(message[message.Length - 1]))
System\Xml\Xsl\XsltOld\ProcessingInstructionAction.cs (2)
125
while (position < nameLength && XmlCharType.
IsWhiteSpace
(name[position]))
142
while (position < nameLength && XmlCharType.
IsWhiteSpace
(name[position]))