21 references to Type
Microsoft.CodeAnalysis (2)
Compilation\SymbolFilter.cs (2)
38TypeAndMember = Type | Member, 43All = Namespace | Type | Member
Microsoft.CodeAnalysis.CSharp (4)
Compilation\CSharpCompilation.cs (2)
4831_includeType = (filter & SymbolFilter.Type) == SymbolFilter.Type;
Declarations\DeclarationTable.cs (2)
318var includeType = (filter & SymbolFilter.Type) == SymbolFilter.Type;
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Compilation\SymbolSearchTests.cs (1)
258filter = includeType ? (filter | SymbolFilter.Type) : filter;
Microsoft.CodeAnalysis.Features (6)
AddImport\SymbolReferenceFinder.cs (3)
184var symbols = await searchScope.FindDeclarationsAsync(name, nameNode, SymbolFilter.Type, cancellationToken).ConfigureAwait(false); 190name + AttributeSuffix, nameNode, SymbolFilter.Type, cancellationToken).ConfigureAwait(false); 308symbol.Name, simpleName, SymbolFilter.Type, cancellationToken).ConfigureAwait(false);
FullyQualify\AbstractFullyQualifyService.cs (2)
79var matchingTypes = await FindAsync(name, ignoreCase, SymbolFilter.Type).ConfigureAwait(false); 80var matchingAttributeTypes = inAttributeContext ? await FindAsync(name + nameof(Attribute), ignoreCase, SymbolFilter.Type).ConfigureAwait(false) : [];
StackTraceExplorer\StackTraceExplorerUtilities.cs (1)
57SymbolFilter.Type,
Microsoft.CodeAnalysis.VisualBasic (4)
Compilation\VisualBasicCompilation.vb (2)
3187_includeType = (filter And SymbolFilter.Type) = SymbolFilter.Type
Declarations\DeclarationTable.vb (2)
328Dim includeType = (filter And SymbolFilter.Type) = SymbolFilter.Type
Microsoft.CodeAnalysis.VisualBasic.Features (1)
CodeFixes\GenerateEvent\GenerateEventCodeFixProvider.vb (1)
132document.Project.Solution, eventHandlerName, Not syntaxFactService.IsCaseSensitive, SymbolFilter.Type, cancellationToken).ConfigureAwait(False)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Compilation\SymbolSearchTests.vb (1)
210filter = If(includeType, filter Or SymbolFilter.Type, filter)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\Declarations\DeclarationFinder.cs (1)
104if (IsOn(filter, SymbolFilter.Type) && symbol is ITypeSymbol)
Workspace\Solution\Project.cs (1)
419return (filter & SymbolFilter.Type) != 0;