1 write to _spanList
PresentationCore (1)
Core\CSharp\MS\Internal\Generic\Span.cs (1)
65_spanList = spanList;
31 references to _spanList
PresentationCore (31)
Core\CSharp\MS\Internal\Generic\Span.cs (31)
92_spanList.Add(span); 105_spanList.RemoveAt(i); 116_spanList.Insert(index, new Span<T>()); 131&& fc + _spanList[fs].Length <= first) 133fc += _spanList[fs].Length; 152&& _spanList[Count - 1].Value.Equals(value)) 155Span<T> lastSpan = _spanList[Count - 1]; 156_spanList[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length); 175&& lc + _spanList[ls].Length <= first + length) 177lc += _spanList[ls].Length; 192&& _spanList[fs - 1].Value.Equals(value)) 196fc -= _spanList[fs].Length; 198length += _spanList[fs].Length; 204if (_spanList[fs].Value.Equals(value)) 216&& _spanList[ls].Value.Equals( value)) 220length = lc + _spanList[ls].Length - first; 221lc += _spanList[ls].Length; 241Span<T> currentSpan = _spanList[fs]; 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); 267trailingValue = _spanList[ls].Value; 268trailingLength = lc + _spanList[ls].Length - (first + length); 291_spanList[fs + 1 + i] = new Span<T>(); 301Span<T> currentSpan = _spanList[fs]; 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); 329get { return _spanList.Count; } 347get { return _spanList[index]; } 357_spanList.Add(new Span<T>());