9 references to IsEmptyOrWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
BlockCommentEditing\CloseBlockCommentCommandHandler.cs (1)
51line.IsEmptyOrWhitespace(0, line.Length - 2))
Microsoft.CodeAnalysis.EditorFeatures (6)
CommentSelection\CommentUncommentSelectionCommandHandler.cs (2)
112if (span.IsEmpty && firstLine.IsEmptyOrWhitespace()) 316if (!line.IsEmptyOrWhitespace())
CommentSelection\ToggleLineCommentCommandHandler.cs (3)
129if (!line.IsEmptyOrWhitespace()) 152if (!line.IsEmptyOrWhitespace()) 191return lineText.Trim().StartsWith(info.SingleLineCommentString, StringComparison.Ordinal) || line.IsEmptyOrWhitespace();
Shared\Utilities\CommonFormattingHelpers.cs (1)
46if (previousLine.IsEmptyOrWhitespace())
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
Extensions\ITextSnapshotLineExtensionsTests.cs (1)
197return line.IsEmptyOrWhitespace();
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
Utilities\CommandHandlers\AbstractImplementAbstractClassOrInterfaceCommandHandler.vb (1)
76If Not nextLine.IsEmptyOrWhitespace() Then