Base:
method
ContainsSymbolsWithName
Microsoft.CodeAnalysis.Compilation.ContainsSymbolsWithName(System.Func<System.String, System.Boolean>, Microsoft.CodeAnalysis.SymbolFilter, System.Threading.CancellationToken)
4 references to ContainsSymbolsWithName
Microsoft.CodeAnalysis.CSharp (1)
Compilation\CSharpCompilation.cs (1)
4596
/// This will be faster than <see cref="
ContainsSymbolsWithName
(Func{string, bool}, SymbolFilter, CancellationToken)"/>
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (3)
Compilation\SymbolSearchTests.cs (3)
23
compilation.
ContainsSymbolsWithName
(n => true, SymbolFilter.None);
51
compilation.
ContainsSymbolsWithName
(predicate: null);
250
Assert.Equal(count > 0, compilation.
ContainsSymbolsWithName
(predicate, filter));