2 writes to _features
PresentationCore (2)
MS\Internal\Shaping\ShaperBuffers.cs (2)
225
_features
= newArray;
289
_features
= newArray;
27 references to _features
PresentationCore (27)
MS\Internal\Shaping\ShaperBuffers.cs (27)
182
get { return
_features
; }
192
get { return _featuresCount == 0 ? 0 :
_features
[_featuresCount - 1].Tag;}
203
_features
[featureIx].Parameter = paramValue;
218
if (
_features
== null ||
219
newSize >
_features
.Length ||
231
return
_features
!= null;
249
if (
_features
!= null &&
250
_features
.Length != 0 &&
252
_features
.Length >= keepCount)
256
ushort currentLength = (ushort)
_features
.Length;
286
newArray[i] =
_features
[i];
312
if ( _featuresCount ==
_features
.Length )
322
_features
[_featuresCount] = feature;
334
if ( _featuresCount ==
_features
.Length )
343
if (
_features
[_featuresCount] != null)
345
_features
[_featuresCount].Tag = featureTag;
346
_features
[_featuresCount].StartIndex = startIndex;
347
_features
[_featuresCount].Length = length;
348
_features
[_featuresCount].Parameter = parameter;
352
_features
[_featuresCount] = new Feature(startIndex,length,featureTag,parameter);
376
if ((featureTag == 0 || featureTag ==
_features
[latestFeatureIx].Tag) &&
377
(
_features
[latestFeatureIx].StartIndex +
378
_features
[latestFeatureIx].Length) == charIx)
380
_features
[latestFeatureIx].Length += 1;
387
(featureTag == 0 ?
_features
[latestFeatureIx].Tag : featureTag),
416
if (
_features
[latestFeatureIx].Tag != featureTag)
420
_features
[latestFeatureIx].Tag = featureTag;