8 references to All
Microsoft.AspNetCore.Razor.Utilities.Shared.UnitTests (4)
ReadOnlyListExtensionsTests.cs (4)
46
Assert.True(readOnlyList.
All
(IsEven));
50
Assert.False(readOnlyList.
All
(IsEven));
54
Assert.True(readOnlyList.
All
(IsOdd));
58
Assert.False(readOnlyList.
All
(IsOdd));
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\DefaultTagHelperResolutionPhase.ComponentTagHelperResolver.cs (1)
536
&& expr.Children.
All
(static inner => inner is CSharpIntermediateToken))
Language\Legacy\RoslynCSharpTokenizer.cs (1)
731
Debug.Assert(_resultCache.
All
(r => r.position <= nextResult.Token.FullSpan.Start));
Microsoft.CodeAnalysis.Razor.Workspaces (1)
CodeActions\Razor\ExtractToCssCodeActionProvider.cs (1)
68
if (textLiteral.LiteralTokens.
All
(static t => t.IsWhitespace()))
Microsoft.VisualStudio.Razor.IntegrationTests (1)
VisualStudioLogging.cs (1)
211
if (expectedFileParts.
All
(part => name.IndexOf(part, StringComparison.OrdinalIgnoreCase) == -1))