15 instantiations of Span
PresentationCore (15)
Core\CSharp\MS\Internal\Generic\Span.cs (15)
116_spanList.Insert(index, new Span<T>()); 148Add(new Span<T>(_defaultValue, first-fc)); 156_spanList[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length); 160Add(new Span<T>(value, length)); 242_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 243_spanList[fs + 1] = new Span<T>(value, length); 254_spanList[fs] = new Span<T>(value, length); 262T trailingValue = (new Span<T>()).Value; 291_spanList[fs + 1 + i] = new Span<T>(); 302_spanList[fs] = new Span<T>(currentSpan.Value, first - fc); 308_spanList[fs] = new Span<T>(value, length); 315_spanList[fs] = new Span<T>(trailingValue, trailingLength); 357_spanList.Add(new Span<T>()); 445_defaultSpan = new Span<T>(vector.DefaultValue, MaxCch); 493Span<T> span = new Span<T>();
15 references to Span
PresentationCore (15)
Core\CSharp\MS\Internal\Generic\Span.cs (14)
45internal struct SpanVector<T> : IEnumerable<Span<T>> 47private FrugalStructList<Span<T>> _spanList; 55: this(defaultValue, new FrugalStructList<Span<T>>()) 61FrugalStructList<Span<T>> spanList 72public IEnumerator<Span<T>> GetEnumerator() 90private void Add(Span<T> span) 155Span<T> lastSpan = _spanList[Count - 1]; 241Span<T> currentSpan = _spanList[fs]; 301Span<T> currentSpan = _spanList[fs]; 345internal Span<T> this[int index] 373private struct SpanEnumerator<U> : IEnumerator<Span<U>> 393public Span<U> Current 436private Span<T> _defaultSpan; 493Span<T> span = new Span<T>();
Core\CSharp\MS\Internal\TextFormatting\LexicalChunk.cs (1)
83Span<int> span = _ichVector[i];