2 writes to _shortList
PresentationCore (2)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (2)
111
_shortList
= null; // deprecate the short array from now on
254
_shortList
= new short[capacity];
12 references to _shortList
PresentationCore (12)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (12)
59
if (
_shortList
!= null)
61
return
_shortList
.Length;
80
if (
_shortList
!= null)
82
return ThousandthOfEmToReal(
_shortList
[index]);
93
if (
_shortList
!= null)
98
_shortList
[index] = sValue;
104
_doubleList = new double[
_shortList
.Length];
105
for (int i = 0; i <
_shortList
.Length; i++)
107
_doubleList[i] = ThousandthOfEmToReal(
_shortList
[i]);
141
if (
_shortList
!= null)
143
for (int i = 0; i <
_shortList
.Length; i++)
145
_shortList
[i] = 0;