2 writes to _features
PresentationCore (2)
MS\Internal\Shaping\ShaperBuffers.cs (2)
224
_features
= newArray;
288
_features
= newArray;
27 references to _features
PresentationCore (27)
MS\Internal\Shaping\ShaperBuffers.cs (27)
181
get { return
_features
; }
191
get { return _featuresCount == 0 ? 0 :
_features
[_featuresCount - 1].Tag;}
202
_features
[featureIx].Parameter = paramValue;
217
if (
_features
== null ||
218
newSize >
_features
.Length ||
230
return
_features
!= null;
248
if (
_features
!= null &&
249
_features
.Length != 0 &&
251
_features
.Length >= keepCount)
255
ushort currentLength = (ushort)
_features
.Length;
285
newArray[i] =
_features
[i];
311
if ( _featuresCount ==
_features
.Length )
321
_features
[_featuresCount] = feature;
333
if ( _featuresCount ==
_features
.Length )
342
if (
_features
[_featuresCount] != null)
344
_features
[_featuresCount].Tag = featureTag;
345
_features
[_featuresCount].StartIndex = startIndex;
346
_features
[_featuresCount].Length = length;
347
_features
[_featuresCount].Parameter = parameter;
351
_features
[_featuresCount] = new Feature(startIndex,length,featureTag,parameter);
375
if ((featureTag == 0 || featureTag ==
_features
[latestFeatureIx].Tag) &&
376
(
_features
[latestFeatureIx].StartIndex +
377
_features
[latestFeatureIx].Length) == charIx)
379
_features
[latestFeatureIx].Length += 1;
386
(featureTag == 0 ?
_features
[latestFeatureIx].Tag : featureTag),
415
if (
_features
[latestFeatureIx].Tag != featureTag)
419
_features
[latestFeatureIx].Tag = featureTag;