13 implementations of GetLength
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\TrackingSpanIntrospector.cs (1)
22public int GetLength(ITrackingSpan value)
Shared\Tagging\Utilities\TagSpanIntervalTree.IntervalIntrospector.cs (1)
22public int GetLength(TagNode value)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
Collections\IntervalTreeTests.cs (2)
25public int GetLength(Tuple<int, int, T> value) 265public int GetLength(int value)
Microsoft.CodeAnalysis.Workspaces (8)
Classification\ClassifiedSpanIntervalIntrospector.cs (1)
15public int GetLength(ClassifiedSpan value)
CodeFixes\FixAllOccurrences\TextChangeMerger.cs (1)
24int IIntervalIntrospector<TextChange>.GetLength(TextChange value) => value.Span.Length;
FormattingContext.AnchorData.cs (3)
46int IIntervalIntrospector<AnchorData>.GetLength(AnchorData value) 52int IIntervalIntrospector<IndentationData>.GetLength(IndentationData value) 58int IIntervalIntrospector<RelativeIndentationData>.GetLength(RelativeIndentationData value)
SuppressIntervalIntrospector.cs (2)
16int IIntervalIntrospector<SuppressSpacingData>.GetLength(SuppressSpacingData value) 22int IIntervalIntrospector<SuppressWrappingData>.GetLength(SuppressWrappingData value)
TextSpanIntervalIntrospector.cs (1)
14public int GetLength(TextSpan value)
Microsoft.VisualStudio.LanguageServices (1)
InheritanceMargin\InheritanceGlyphManager_IntervalTreeData.cs (1)
36public int GetLength(GlyphData data)
3 references to GetLength
Microsoft.CodeAnalysis.Workspaces (3)
ContextIntervalTree.cs (2)
124Introspector.GetLength(currentNode.Value) < Introspector.GetLength(result!)))
IntervalTree`1.cs (1)
354=> introspector.GetStart(value) + introspector.GetLength(value);