1 write to _spanList
PresentationCore (1)
MS\Internal\Generic\Span.cs (1)
64
_spanList
= spanList;
31 references to _spanList
PresentationCore (31)
MS\Internal\Generic\Span.cs (31)
91
_spanList
.Add(span);
104
_spanList
.RemoveAt(i);
115
_spanList
.Insert(index, new Span<T>());
130
&& fc +
_spanList
[fs].Length <= first)
132
fc +=
_spanList
[fs].Length;
151
&&
_spanList
[Count - 1].Value.Equals(value))
154
Span<T> lastSpan =
_spanList
[Count - 1];
155
_spanList
[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length);
174
&& lc +
_spanList
[ls].Length <= first + length)
176
lc +=
_spanList
[ls].Length;
191
&&
_spanList
[fs - 1].Value.Equals(value))
195
fc -=
_spanList
[fs].Length;
197
length +=
_spanList
[fs].Length;
203
if (
_spanList
[fs].Value.Equals(value))
215
&&
_spanList
[ls].Value.Equals( value))
219
length = lc +
_spanList
[ls].Length - first;
220
lc +=
_spanList
[ls].Length;
240
Span<T> currentSpan =
_spanList
[fs];
241
_spanList
[fs] = new Span<T>(currentSpan.Value, first - fc);
242
_spanList
[fs + 1] = new Span<T>(value, length);
253
_spanList
[fs] = new Span<T>(value, length);
266
trailingValue =
_spanList
[ls].Value;
267
trailingLength = lc +
_spanList
[ls].Length - (first + length);
290
_spanList
[fs + 1 + i] = new Span<T>();
300
Span<T> currentSpan =
_spanList
[fs];
301
_spanList
[fs] = new Span<T>(currentSpan.Value, first - fc);
307
_spanList
[fs] = new Span<T>(value, length);
314
_spanList
[fs] = new Span<T>(trailingValue, trailingLength);
328
get { return
_spanList
.Count; }
346
get { return
_spanList
[index]; }
356
_spanList
.Add(new Span<T>());