15 instantiations of Span
PresentationCore (15)
MS\Internal\Generic\Span.cs (15)
115_spanList.Insert(index, new Span<T>()); 147Add(new Span<T>(_defaultValue, first-fc)); 155_spanList[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length); 159Add(new Span<T>(value, length)); 241_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 242_spanList[fs + 1] = new Span<T>(value, length); 253_spanList[fs] = new Span<T>(value, length); 261T trailingValue = (new Span<T>()).Value; 290_spanList[fs + 1 + i] = new Span<T>(); 301_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 307_spanList[fs] = new Span<T>(value, length); 314_spanList[fs] = new Span<T>(trailingValue, trailingLength); 356_spanList.Add(new Span<T>()); 444_defaultSpan = new Span<T>(vector.DefaultValue, MaxCch); 492Span<T> span = new Span<T>();
15 references to Span
PresentationCore (15)
MS\Internal\Generic\Span.cs (14)
44internal struct SpanVector<T> : IEnumerable<Span<T>> 46private FrugalStructList<Span<T>> _spanList; 54: this(defaultValue, new FrugalStructList<Span<T>>()) 60FrugalStructList<Span<T>> spanList 71public IEnumerator<Span<T>> GetEnumerator() 89private void Add(Span<T> span) 154Span<T> lastSpan = _spanList[Count - 1]; 240Span<T> currentSpan = _spanList[fs]; 300Span<T> currentSpan = _spanList[fs]; 344internal Span<T> this[int index] 372private struct SpanEnumerator<U> : IEnumerator<Span<U>> 392public Span<U> Current 435private Span<T> _defaultSpan; 492Span<T> span = new Span<T>();
MS\Internal\TextFormatting\LexicalChunk.cs (1)
81MS.Internal.Generic.Span<int> span = _ichVector[i];