2 types derived from EfficientTagger
Microsoft.CodeAnalysis.EditorFeatures (2)
Classification\Syntactic\SyntacticClassificationTaggerProvider.Tagger.cs (1)
15private sealed class Tagger : EfficientTagger<IClassificationTag>, IDisposable
Tagging\AbstractAsynchronousTaggerProvider.Tagger.cs (1)
19private sealed partial class Tagger : EfficientTagger<TTag>, IDisposable
19 references to EfficientTagger
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Classification\SemanticClassifierTests.cs (1)
3934using var tagger = provider.CreateTagger(disposableView.TextView, extraBuffer);
Microsoft.CodeAnalysis.EditorFeatures (16)
Classification\Syntactic\SyntacticClassificationTaggerProvider.cs (1)
27public EfficientTagger<IClassificationTag>? CreateTagger(ITextBuffer buffer)
Classification\TotalClassificationTaggerProvider.cs (3)
68EfficientTagger<IClassificationTag> syntacticTagger, 69EfficientTagger<IClassificationTag> semanticTagger, 70EfficientTagger<IClassificationTag> embeddedTagger)
Tagging\AbstractAsynchronousTaggerProvider.cs (1)
147protected EfficientTagger<TTag>? CreateEfficientTagger(ITextView? textView, ITextBuffer subjectBuffer)
Tagging\AggregateTagger.cs (6)
17internal abstract class AbstractAggregateTagger<TTag>(ImmutableArray<EfficientTagger<TTag>> taggers) : EfficientTagger<TTag>, IDisposable 20protected readonly ImmutableArray<EfficientTagger<TTag>> Taggers = taggers; 27foreach (var tagger in this.Taggers) 38foreach (var tagger in this.Taggers) 44foreach (var tagger in this.Taggers)
Tagging\AsynchronousTaggerProvider.cs (1)
15public EfficientTagger<TTag>? CreateTagger(ITextBuffer subjectBuffer)
Tagging\AsynchronousViewportTaggerProvider.cs (3)
119var tagger = CreateTagger(textView, buffer); 129public EfficientTagger<TTag> CreateTagger(ITextView textView, ITextBuffer buffer) 131using var taggers = TemporaryArray<EfficientTagger<TTag>>.Empty;
Tagging\AsynchronousViewTaggerProvider.cs (1)
25public EfficientTagger<TTag>? CreateTagger(ITextView textView, ITextBuffer subjectBuffer)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
Tagging\AsynchronousTaggerTests.cs (2)
109using var tagger = tagProvider.CreateTagger(textBuffer); 135using var tagger = tagProvider.CreateTagger(textBuffer);