Lines Matching refs:dDate
446 WideString CJS_PublicMethods::PrintDateUsingFormat(double dDate, in PrintDateUsingFormat() argument
451 int nYear = FX_GetYearFromTime(dDate); in PrintDateUsingFormat()
452 int nMonth = FX_GetMonthFromTime(dDate) + 1; in PrintDateUsingFormat()
453 int nDay = FX_GetDayFromTime(dDate); in PrintDateUsingFormat()
454 int nHour = FX_GetHourFromTime(dDate); in PrintDateUsingFormat()
455 int nMin = FX_GetMinFromTime(dDate); in PrintDateUsingFormat()
456 int nSec = FX_GetSecFromTime(dDate); in PrintDateUsingFormat()
892 double dDate; in AFDate_FormatEx() local
895 dDate = ParseDateAsGMT(strValue); in AFDate_FormatEx()
897 dDate = ParseDateUsingFormat(strValue, sFormat, nullptr); in AFDate_FormatEx()
900 if (std::isnan(dDate)) { in AFDate_FormatEx()
907 val = PrintDateUsingFormat(dDate, sFormat); in AFDate_FormatEx()
1229 double dDate = ParseDateUsingFormat(sValue, sFormat, nullptr); in AFParseDateEx() local
1230 if (std::isnan(dDate)) { in AFParseDateEx()
1236 return CJS_Result::Success(pRuntime->NewNumber(dDate)); in AFParseDateEx()