1 write to _spanList
PresentationCore (1)
MS\Internal\Generic\Span.cs (1)
59
_spanList
= spanList;
31 references to _spanList
PresentationCore (31)
MS\Internal\Generic\Span.cs (31)
86
_spanList
.Add(span);
99
_spanList
.RemoveAt(i);
110
_spanList
.Insert(index, new Span<T>());
125
&& fc +
_spanList
[fs].Length <= first)
127
fc +=
_spanList
[fs].Length;
146
&&
_spanList
[Count - 1].Value.Equals(value))
149
Span<T> lastSpan =
_spanList
[Count - 1];
150
_spanList
[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length);
169
&& lc +
_spanList
[ls].Length <= first + length)
171
lc +=
_spanList
[ls].Length;
186
&&
_spanList
[fs - 1].Value.Equals(value))
190
fc -=
_spanList
[fs].Length;
192
length +=
_spanList
[fs].Length;
198
if (
_spanList
[fs].Value.Equals(value))
210
&&
_spanList
[ls].Value.Equals( value))
214
length = lc +
_spanList
[ls].Length - first;
215
lc +=
_spanList
[ls].Length;
235
Span<T> currentSpan =
_spanList
[fs];
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);
261
trailingValue =
_spanList
[ls].Value;
262
trailingLength = lc +
_spanList
[ls].Length - (first + length);
285
_spanList
[fs + 1 + i] = new Span<T>();
295
Span<T> currentSpan =
_spanList
[fs];
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);
323
get { return
_spanList
.Count; }
341
get { return
_spanList
[index]; }
351
_spanList
.Add(new Span<T>());