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)
133
fc +=
_spanList
[fs].Length;
152
&&
_spanList
[Count - 1].Value.Equals(value))
155
Span<T> lastSpan =
_spanList
[Count - 1];
156
_spanList
[Count - 1] = new Span<T>(lastSpan.Value, lastSpan.Length + length);
175
&& lc +
_spanList
[ls].Length <= first + length)
177
lc +=
_spanList
[ls].Length;
192
&&
_spanList
[fs - 1].Value.Equals(value))
196
fc -=
_spanList
[fs].Length;
198
length +=
_spanList
[fs].Length;
204
if (
_spanList
[fs].Value.Equals(value))
216
&&
_spanList
[ls].Value.Equals( value))
220
length = lc +
_spanList
[ls].Length - first;
221
lc +=
_spanList
[ls].Length;
241
Span<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);
267
trailingValue =
_spanList
[ls].Value;
268
trailingLength = lc +
_spanList
[ls].Length - (first + length);
291
_spanList
[fs + 1 + i] = new Span<T>();
301
Span<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);
329
get { return
_spanList
.Count; }
347
get { return
_spanList
[index]; }
357
_spanList
.Add(new Span<T>());