2 writes to _doubleList
PresentationCore (2)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (2)
105
_doubleList
= new double[_shortList.Length];
250
_doubleList
= new double[capacity];
7 references to _doubleList
PresentationCore (7)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (7)
66
return
_doubleList
.Length;
87
return
_doubleList
[index];
108
_doubleList
[i] = ThousandthOfEmToReal(_shortList[i]);
111
_doubleList
[index] = value; // set the current value
117
_doubleList
[index] = value; // we are using double array
151
for (int i = 0; i <
_doubleList
.Length; i++)
153
_doubleList
[i] = 0;