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