Home
last modified time | relevance | path

Searched refs:nAmount (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp2682 double nAmount = ValueToDouble(pThis, argOne.get()); in FV() local
2685 if ((nRate < 0) || (nPeriod <= 0) || (nAmount <= 0)) { in FV()
2696 dResult = nAmount * (nTemp - 1) / nRate; in FV()
2698 dResult = nAmount * nPeriod; in FV()
2916 double nAmount = ValueToDouble(pThis, argOne.get()); in PV() local
2919 if ((nAmount <= 0) || (nRate < 0) || (nPeriod <= 0)) { in PV()
2929 args.GetReturnValue()->SetDouble(nAmount * ((1 - nTemp) / nRate)); in PV()