13 implementations of GetStart
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\TrackingSpanIntrospector.cs (1)
19public int GetStart(ITrackingSpan value)
Shared\Tagging\Utilities\TagSpanIntervalTree.IntervalIntrospector.cs (1)
19public int GetStart(TagNode value)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
Collections\IntervalTreeTests.cs (2)
22public int GetStart(Tuple<int, int, T> value) 268public int GetStart(int value)
Microsoft.CodeAnalysis.Workspaces (8)
Classification\ClassifiedSpanIntervalIntrospector.cs (1)
18public int GetStart(ClassifiedSpan value)
CodeFixes\FixAllOccurrences\TextChangeMerger.cs (1)
23int IIntervalIntrospector<TextChange>.GetStart(TextChange value) => value.Span.Start;
FormattingContext.AnchorData.cs (3)
43int IIntervalIntrospector<AnchorData>.GetStart(AnchorData value) 49int IIntervalIntrospector<IndentationData>.GetStart(IndentationData value) 55int IIntervalIntrospector<RelativeIndentationData>.GetStart(RelativeIndentationData value)
SuppressIntervalIntrospector.cs (2)
13int IIntervalIntrospector<SuppressSpacingData>.GetStart(SuppressSpacingData value) 19int IIntervalIntrospector<SuppressWrappingData>.GetStart(SuppressWrappingData value)
TextSpanIntervalIntrospector.cs (1)
11public int GetStart(TextSpan value)
Microsoft.VisualStudio.LanguageServices (1)
InheritanceMargin\InheritanceGlyphManager_IntervalTreeData.cs (1)
33public int GetStart(GlyphData data)
14 references to GetStart
Microsoft.CodeAnalysis.Workspaces (14)
ContextIntervalTree.cs (7)
47var thisStart = Introspector.GetStart(value); 58var thisStart = Introspector.GetStart(value); 93if (Introspector.GetStart(currentNode.Value) <= start) 123(Introspector.GetStart(result!) <= Introspector.GetStart(currentNode.Value) && 154Introspector.GetStart(parentNode.Value) == Introspector.GetStart(currentNode.Value))
IntervalTree`1.cs (7)
55var thisStart = introspector.GetStart(value); 73var thisStart = introspector.GetStart(value); 85var thisStart = introspector.GetStart(value); 224if (introspector.GetStart(currentNode.Value) <= end) 253var newNodeStart = introspector.GetStart(newNode.Value); 267if (newNodeStart < introspector.GetStart(root.Value)) 354=> introspector.GetStart(value) + introspector.GetLength(value);