Lines Matching refs:pArray
140 FX_FLOAT* pArray = new FX_FLOAT[nRects]; in GetMinMaxValue() local
146 pArray[i] = CPDF_Rect(array.GetAt(i)).left; in GetMinMaxValue()
153 pArray[i] = CPDF_Rect(array.GetAt(i)).top; in GetMinMaxValue()
160 pArray[i] = CPDF_Rect(array.GetAt(i)).right; in GetMinMaxValue()
167 pArray[i] = CPDF_Rect(array.GetAt(i)).bottom; in GetMinMaxValue()
174 fRet = pArray[0]; in GetMinMaxValue()
178 if (fRet <= pArray[i]) in GetMinMaxValue()
179 fRet = pArray[i]; in GetMinMaxValue()
184 if (fRet >= pArray[i]) in GetMinMaxValue()
185 fRet = pArray[i]; in GetMinMaxValue()
187 delete[] pArray; in GetMinMaxValue()