Lines Matching refs:dDate
770 CFX_WideString CJS_PublicMethods::MakeFormatDate(double dDate, in MakeFormatDate() argument
774 int nYear = JS_GetYearFromTime(dDate); in MakeFormatDate()
775 int nMonth = JS_GetMonthFromTime(dDate) + 1; in MakeFormatDate()
776 int nDay = JS_GetDayFromTime(dDate); in MakeFormatDate()
777 int nHour = JS_GetHourFromTime(dDate); in MakeFormatDate()
778 int nMin = JS_GetMinFromTime(dDate); in MakeFormatDate()
779 int nSec = JS_GetSecFromTime(dDate); in MakeFormatDate()
1324 double dDate = 0.0f; in AFDate_FormatEx() local
1329 dDate = MakeInterDate(strValue); in AFDate_FormatEx()
1331 dDate = MakeRegularDate(strValue, sFormat, nullptr); in AFDate_FormatEx()
1334 if (JS_PortIsNan(dDate)) { in AFDate_FormatEx()
1342 val = MakeFormatDate(dDate, sFormat); in AFDate_FormatEx()
1834 double dDate = MakeRegularDate(sValue, sFormat, nullptr); in AFParseDateEx() local
1836 if (JS_PortIsNan(dDate)) { in AFParseDateEx()
1844 vRet = dDate; in AFParseDateEx()