10 references to SymbolMatchPriority
Microsoft.CodeAnalysis.Features (10)
Completion\Providers\AbstractRecommendationServiceBasedCompletionProvider.cs (4)
186return SymbolMatchPriority.PreferLocalOrParameterOrRangeVariable; 191return SymbolMatchPriority.PreferFieldOrProperty; 196return SymbolMatchPriority.PreferEventOrMethod; 199return SymbolMatchPriority.PreferType;
ExternalAccess\Pythia\Api\PythiaSymbolMatchPriority.cs (6)
11internal static readonly int Keyword = SymbolMatchPriority.Keyword; 12internal static readonly int PreferType = SymbolMatchPriority.PreferType; 13internal static readonly int PreferNamedArgument = SymbolMatchPriority.PreferNamedArgument; 14internal static readonly int PreferEventOrMethod = SymbolMatchPriority.PreferEventOrMethod; 15internal static readonly int PreferFieldOrProperty = SymbolMatchPriority.PreferFieldOrProperty; 16internal static readonly int PreferLocalOrParameterOrRangeVariable = SymbolMatchPriority.PreferLocalOrParameterOrRangeVariable;