8 references to IsEmptyOrWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
BlockCommentEditing\CloseBlockCommentCommandHandler.cs (1)
46line.IsEmptyOrWhitespace(0, line.Length - 2))
Microsoft.CodeAnalysis.EditorFeatures (6)
CommentSelection\CommentUncommentSelectionCommandHandler.cs (2)
104if (span.IsEmpty && firstLine.IsEmptyOrWhitespace()) 308if (!line.IsEmptyOrWhitespace())
CommentSelection\ToggleLineCommentCommandHandler.cs (3)
123if (!line.IsEmptyOrWhitespace()) 146if (!line.IsEmptyOrWhitespace()) 185return 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)
196return line.IsEmptyOrWhitespace();