3 references to PooledDelegates
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\Helpers.cs (1)
159using var _ = PooledDelegates.GetPooledFunction(static (filterText, pattern) => filterText.StartsWith(pattern, StringComparison.CurrentCultureIgnoreCase), textTypedSoFar, out Func<string, bool> isPrefixMatch);
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionService.ProviderManager.cs (1)
155using var _ = PooledDelegates.GetPooledFunction(static (p, n) => p.Name == n, item.ProviderName, out Func<CompletionProvider, bool> isNameMatchingProviderPredicate);
Microsoft.CodeAnalysis.Workspaces (1)
Storage\SQLite\v2\SQLitePersistentStorage_Threading.cs (1)
22using var _ = PooledDelegates.GetPooledFunction(func, arg, out var boundFunction);