2 writes to _shortList
PresentationCore (2)
Core\CSharp\MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (2)
134_shortList = null; // deprecate the short array from now on 283_shortList = new short[capacity];
12 references to _shortList
PresentationCore (12)
Core\CSharp\MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (12)
82if (_shortList != null) 84return _shortList.Length; 103if (_shortList != null) 105return ThousandthOfEmToReal(_shortList[index]); 116if (_shortList != null) 121_shortList[index] = sValue; 127_doubleList = new double[_shortList.Length]; 128for (int i = 0; i < _shortList.Length; i++) 130_doubleList[i] = ThousandthOfEmToReal(_shortList[i]); 164if (_shortList != null) 166for (int i = 0; i < _shortList.Length; i++) 168_shortList[i] = 0;