2 writes to _doubleList
PresentationCore (2)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (2)
120
_doubleList
= new double[_shortList.Length];
265
_doubleList
= new double[capacity];
7 references to _doubleList
PresentationCore (7)
MS\Internal\TextFormatting\ThousandthOfEmRealDoubles.cs (7)
81
return
_doubleList
.Length;
102
return
_doubleList
[index];
123
_doubleList
[i] = ThousandthOfEmToReal(_shortList[i]);
126
_doubleList
[index] = value; // set the current value
132
_doubleList
[index] = value; // we are using double array
166
for (int i = 0; i <
_doubleList
.Length; i++)
168
_doubleList
[i] = 0;