8 references to IsEmpty
Microsoft.CodeAnalysis.CodeStyle (3)
DiagnosticHelper.cs (1)
187
Contract.ThrowIfTrue(tagIndices.
IsEmpty
());
EnumerableExtensions.cs (2)
270
/// This method is necessary to avoid an ambiguity between <see cref="IsEmpty{T}(IReadOnlyCollection{T})"/> and <see cref="
IsEmpty
{T}(ICollection{T})"/>.
278
/// This method is necessary to avoid an ambiguity between <see cref="IsEmpty{T}(IReadOnlyCollection{T})"/> and <see cref="
IsEmpty
{T}(ICollection{T})"/>.
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
SyntaxNodeExtensions.cs (1)
734
result = result.Where(group => !group.
IsEmpty
()).ToList();
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (3)
92
if (modifierTokens.
IsEmpty
())
290
if (modifierTokens.
IsEmpty
())
587
if (modifierTokens.
IsEmpty
())
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
SyntaxNodeExtensions.vb (1)
329
result = result.Where(Function(group) Not group.
IsEmpty
()).ToList()