2 writes to _shortList
PresentationCore (2)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (2)
112
_shortList
= null; // deprecate the short array from now on
255
_shortList
= new short[capacity];
12 references to _shortList
PresentationCore (12)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (12)
60
if (
_shortList
!= null)
62
return
_shortList
.Length;
81
if (
_shortList
!= null)
83
return ThousandthOfEmToReal(
_shortList
[index]);
94
if (
_shortList
!= null)
99
_shortList
[index] = sValue;
105
_doubleList = new double[
_shortList
.Length];
106
for (int i = 0; i <
_shortList
.Length; i++)
108
_doubleList[i] = ThousandthOfEmToReal(
_shortList
[i]);
142
if (
_shortList
!= null)
144
for (int i = 0; i <
_shortList
.Length; i++)
146
_shortList
[i] = 0;