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