1 write to FilterTree
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\DiagnosticAnalysisContext.cs (1)
839
FilterTree
= filterTree;
15 references to FilterTree
Microsoft.CodeAnalysis (3)
DiagnosticAnalyzer\DiagnosticAnalysisContext.cs (3)
795
/// Optional filter span within the <see cref="
FilterTree
"/> for which to compute diagnostics.
796
/// <see langword="null"/> if we are analyzing the entire <see cref="
FilterTree
"/>
799
/// <remarks>This property is guaranteed to be <see langword="null"/> if <see cref="
FilterTree
"/> is <see langword="null"/>.</remarks>
Microsoft.CodeAnalysis.CodeStyle (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\AnalysisContextExtensions.cs (5)
65
=> context.
FilterTree
== null || (context.
FilterTree
== tree && ShouldAnalyze(context.FilterSpan, span));
173
/// NOTE: This method expects <see cref="SymbolAnalysisContext.
FilterTree
"/>
178
Contract.ThrowIfNull(context.
FilterTree
);
180
return context.
FilterTree
.FindNode(context.FilterSpan, findInTrivia, getInnermostNodeForTie, context.CancellationToken);
Microsoft.CodeAnalysis.Test.Utilities (2)
Diagnostics\CommonDiagnosticAnalyzers.cs (2)
3130
CallbackFilterTree = context.
FilterTree
;
3142
if (startContext.FilterTree != endContext.
FilterTree
)
Microsoft.CodeAnalysis.Workspaces (5)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\AnalysisContextExtensions.cs (5)
65
=> context.
FilterTree
== null || (context.
FilterTree
== tree && ShouldAnalyze(context.FilterSpan, span));
173
/// NOTE: This method expects <see cref="SymbolAnalysisContext.
FilterTree
"/>
178
Contract.ThrowIfNull(context.
FilterTree
);
180
return context.
FilterTree
.FindNode(context.FilterSpan, findInTrivia, getInnermostNodeForTie, context.CancellationToken);