1 write to _spanList
PresentationCore (1)
MS\Internal\Generic\Span.cs (1)
60
_spanList
= spanList;
31 references to _spanList
PresentationCore (31)
MS\Internal\Generic\Span.cs (31)
87
_spanList
.Add(span);
100
_spanList
.RemoveAt(i);
111
_spanList
.Insert(index, new Span<T>());
126
&& fc +
_spanList
[fs].Length <= first)
128
fc +=
_spanList
[fs].Length;
147
&&
_spanList
[Count - 1].Value.Equals(value))
150
Span<T> lastSpan =
_spanList
[Count - 1];
151
_spanList
[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length);
170
&& lc +
_spanList
[ls].Length <= first + length)
172
lc +=
_spanList
[ls].Length;
187
&&
_spanList
[fs - 1].Value.Equals(value))
191
fc -=
_spanList
[fs].Length;
193
length +=
_spanList
[fs].Length;
199
if (
_spanList
[fs].Value.Equals(value))
211
&&
_spanList
[ls].Value.Equals( value))
215
length = lc +
_spanList
[ls].Length - first;
216
lc +=
_spanList
[ls].Length;
236
Span<T> currentSpan =
_spanList
[fs];
237
_spanList
[fs] = new Span<T>(currentSpan.Value, first - fc);
238
_spanList
[fs + 1] = new Span<T>(value, length);
249
_spanList
[fs] = new Span<T>(value, length);
262
trailingValue =
_spanList
[ls].Value;
263
trailingLength = lc +
_spanList
[ls].Length - (first + length);
286
_spanList
[fs + 1 + i] = new Span<T>();
296
Span<T> currentSpan =
_spanList
[fs];
297
_spanList
[fs] = new Span<T>(currentSpan.Value, first - fc);
303
_spanList
[fs] = new Span<T>(value, length);
310
_spanList
[fs] = new Span<T>(trailingValue, trailingLength);
324
get { return
_spanList
.Count; }
342
get { return
_spanList
[index]; }
352
_spanList
.Add(new Span<T>());