25 references to IsWhiteSpace
System.Xml (25)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
1404
Debug.Assert( !xmlCharType.
IsWhiteSpace
( (char)ch ) );
System\Xml\Core\XmlTextEncoder.cs (2)
194
Debug.Assert( ( ch < 0x20 && !xmlCharType.
IsWhiteSpace
( ch ) ) || ( ch > 0xFFFD ) );
325
Debug.Assert( ( ch < 0x20 && !xmlCharType.
IsWhiteSpace
( ch ) ) || ( ch > 0xFFFD ) );
System\Xml\Core\XmlTextReaderImpl.cs (8)
4184
while (xmlCharType.
IsWhiteSpace
(tmpCh = chars[pos])) {
5132
if ( !xmlCharType.
IsWhiteSpace
(chars[charRefEndPos-charCount]) ||
5158
if ( !xmlCharType.
IsWhiteSpace
(ps.chars[pos-1]) ) {
6056
if ( !xmlCharType.
IsWhiteSpace
( ps.chars[ps.charPos + 7] ) ) {
7524
( ps.chars[endPos] == '>' || xmlCharType.
IsWhiteSpace
( ps.chars[endPos] ) ) ) {
7532
if ( xmlCharType.
IsWhiteSpace
( ps.chars[endPos] ) ) {
7560
( ps.chars[endPos] == '>' || ps.chars[endPos] == '/' || xmlCharType.
IsWhiteSpace
( ps.chars[endPos] ) ) ) {
7743
if ( normalize && xmlCharType.
IsWhiteSpace
( chars[ps.charPos] ) && pos - ps.charPos == 1 ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (4)
2047
while (xmlCharType.
IsWhiteSpace
(tmpCh = chars[pos])) {
3141
if (!xmlCharType.
IsWhiteSpace
(chars[charRefEndPos - charCount]) ||
3176
if (!xmlCharType.
IsWhiteSpace
(ps.chars[pos - 1])) {
4108
if ( !xmlCharType.
IsWhiteSpace
( ps.chars[ps.charPos + 7] ) ) {
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
1276
Debug.Assert( !xmlCharType.
IsWhiteSpace
( (char)ch ) );
System\Xml\Core\XmlWellFormedWriterHelpers.cs (2)
377
while (bufChunk.index < endIndex && xmlCharType.
IsWhiteSpace
(bufChunk.buffer[bufChunk.index])) {
410
while (bufChunk.count > 0 && xmlCharType.
IsWhiteSpace
(bufChunk.buffer[bufChunk.index + bufChunk.count - 1])) {
System\Xml\Schema\DtdParser.cs (1)
1619
if ( !xmlCharType.
IsWhiteSpace
( chars[curPos+1] ) ) {
System\Xml\Schema\DtdParserAsync.cs (1)
1236
if ( !xmlCharType.
IsWhiteSpace
( chars[curPos+1] ) ) {
System\Xml\XmlComplianceUtil.cs (3)
28
while ( xmlCharType.
IsWhiteSpace
( value[startPos] ) ) {
37
if ( !xmlCharType.
IsWhiteSpace
( value[i] ) ) {
43
while ( j < len && xmlCharType.
IsWhiteSpace
( value[j] ) ) {
System\Xml\XPath\Internal\StringFunctions.cs (1)
193
if (!xmlCharType.
IsWhiteSpace
(str1[count])) {
System\Xml\XPath\Internal\XPathScanner.cs (1)
111
while (xmlCharType.
IsWhiteSpace
(this.CurerntChar) && NextChar()) ;