15 instantiations of Span
PresentationCore (15)
MS\Internal\Generic\Span.cs (15)
110_spanList.Insert(index, new Span<T>()); 142Add(new Span<T>(_defaultValue, first-fc)); 150_spanList[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length); 154Add(new Span<T>(value, length)); 236_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 237_spanList[fs + 1] = new Span<T>(value, length); 248_spanList[fs] = new Span<T>(value, length); 256T trailingValue = (new Span<T>()).Value; 285_spanList[fs + 1 + i] = new Span<T>(); 296_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 302_spanList[fs] = new Span<T>(value, length); 309_spanList[fs] = new Span<T>(trailingValue, trailingLength); 351_spanList.Add(new Span<T>()); 439_defaultSpan = new Span<T>(vector.DefaultValue, MaxCch); 487Span<T> span = new Span<T>();
15 references to Span
PresentationCore (15)
MS\Internal\Generic\Span.cs (14)
39internal struct SpanVector<T> : IEnumerable<Span<T>> 41private FrugalStructList<Span<T>> _spanList; 49: this(defaultValue, new FrugalStructList<Span<T>>()) 55FrugalStructList<Span<T>> spanList 66public IEnumerator<Span<T>> GetEnumerator() 84private void Add(Span<T> span) 149Span<T> lastSpan = _spanList[Count - 1]; 235Span<T> currentSpan = _spanList[fs]; 295Span<T> currentSpan = _spanList[fs]; 339internal Span<T> this[int index] 367private struct SpanEnumerator<U> : IEnumerator<Span<U>> 387public Span<U> Current 430private Span<T> _defaultSpan; 487Span<T> span = new Span<T>();
MS\Internal\TextFormatting\LexicalChunk.cs (1)
79MS.Internal.Generic.Span<int> span = _ichVector[i];