3 writes to _cachePointers
PresentationCore (3)
MS\Internal\Shaping\OpenTypeLayout.cs (3)
1169
_cachePointers
= null;
1289
_cachePointers
= new ushort[glyphRunLength];
1320
_cachePointers
= tmp;
8 references to _cachePointers
PresentationCore (8)
MS\Internal\Shaping\OpenTypeLayout.cs (8)
1287
if (
_cachePointers
!= null &&
_cachePointers
.Length >= glyphRunLength) return;
1313
if (
_cachePointers
.Length < newLength)
1317
Array.Copy(
_cachePointers
, tmp, firstGlyphChanged);
1318
Array.Copy(
_cachePointers
, oldAfterLastGlyphChanged, tmp, afterLastGlyphChanged, oldLength - oldAfterLastGlyphChanged);
1324
Array.Copy(
_cachePointers
, oldAfterLastGlyphChanged,
_cachePointers
, afterLastGlyphChanged, oldLength - oldAfterLastGlyphChanged);
1331
get { return
_cachePointers
; }