Lines Matching refs:dDate
620 CFX_WideString CJS_PublicMethods::MakeFormatDate(double dDate, in MakeFormatDate() argument
624 int nYear = JS_GetYearFromTime(dDate); in MakeFormatDate()
625 int nMonth = JS_GetMonthFromTime(dDate) + 1; in MakeFormatDate()
626 int nDay = JS_GetDayFromTime(dDate); in MakeFormatDate()
627 int nHour = JS_GetHourFromTime(dDate); in MakeFormatDate()
628 int nMin = JS_GetMinFromTime(dDate); in MakeFormatDate()
629 int nSec = JS_GetSecFromTime(dDate); in MakeFormatDate()
1119 double dDate = 0.0f; in AFDate_FormatEx() local
1124 dDate = MakeInterDate(strValue); in AFDate_FormatEx()
1126 dDate = MakeRegularDate(strValue, sFormat, nullptr); in AFDate_FormatEx()
1129 if (JS_PortIsNan(dDate)) { in AFDate_FormatEx()
1137 val = MakeFormatDate(dDate, sFormat); in AFDate_FormatEx()
1569 double dDate = MakeRegularDate(sValue, sFormat, nullptr); in AFParseDateEx() local
1570 if (JS_PortIsNan(dDate)) { in AFParseDateEx()
1578 vRet = CJS_Value(pRuntime, dDate); in AFParseDateEx()