15 instantiations of Span
PresentationCore (15)
MS\Internal\Generic\Span.cs (15)
111_spanList.Insert(index, new Span<T>()); 143Add(new Span<T>(_defaultValue, first-fc)); 151_spanList[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length); 155Add(new Span<T>(value, length)); 237_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 238_spanList[fs + 1] = new Span<T>(value, length); 249_spanList[fs] = new Span<T>(value, length); 257T trailingValue = (new Span<T>()).Value; 286_spanList[fs + 1 + i] = new Span<T>(); 297_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 303_spanList[fs] = new Span<T>(value, length); 310_spanList[fs] = new Span<T>(trailingValue, trailingLength); 352_spanList.Add(new Span<T>()); 440_defaultSpan = new Span<T>(vector.DefaultValue, MaxCch); 488Span<T> span = new Span<T>();
15 references to Span
PresentationCore (15)
MS\Internal\Generic\Span.cs (14)
40internal struct SpanVector<T> : IEnumerable<Span<T>> 42private FrugalStructList<Span<T>> _spanList; 50: this(defaultValue, new FrugalStructList<Span<T>>()) 56FrugalStructList<Span<T>> spanList 67public IEnumerator<Span<T>> GetEnumerator() 85private void Add(Span<T> span) 150Span<T> lastSpan = _spanList[Count - 1]; 236Span<T> currentSpan = _spanList[fs]; 296Span<T> currentSpan = _spanList[fs]; 340internal Span<T> this[int index] 368private struct SpanEnumerator<U> : IEnumerator<Span<U>> 388public Span<U> Current 431private Span<T> _defaultSpan; 488Span<T> span = new Span<T>();
MS\Internal\TextFormatting\LexicalChunk.cs (1)
80MS.Internal.Generic.Span<int> span = _ichVector[i];