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)
82
if (
_shortList
!= null)
84
return
_shortList
.Length;
103
if (
_shortList
!= null)
105
return ThousandthOfEmToReal(
_shortList
[index]);
116
if (
_shortList
!= null)
121
_shortList
[index] = sValue;
127
_doubleList = new double[
_shortList
.Length];
128
for (int i = 0; i <
_shortList
.Length; i++)
130
_doubleList[i] = ThousandthOfEmToReal(
_shortList
[i]);
164
if (
_shortList
!= null)
166
for (int i = 0; i <
_shortList
.Length; i++)
168
_shortList
[i] = 0;