Lines Matching refs:dDate
729 WideString CJS_PublicMethods::MakeFormatDate(double dDate, in MakeFormatDate() argument
734 int nYear = JS_GetYearFromTime(dDate); in MakeFormatDate()
735 int nMonth = JS_GetMonthFromTime(dDate) + 1; in MakeFormatDate()
736 int nDay = JS_GetDayFromTime(dDate); in MakeFormatDate()
737 int nHour = JS_GetHourFromTime(dDate); in MakeFormatDate()
738 int nMin = JS_GetMinFromTime(dDate); in MakeFormatDate()
739 int nSec = JS_GetSecFromTime(dDate); in MakeFormatDate()
1162 double dDate; in AFDate_FormatEx() local
1166 dDate = MakeInterDate(strValue); in AFDate_FormatEx()
1168 dDate = MakeRegularDate(strValue, sFormat, nullptr); in AFDate_FormatEx()
1171 if (std::isnan(dDate)) { in AFDate_FormatEx()
1178 val = MakeFormatDate(dDate, sFormat); in AFDate_FormatEx()
1535 double dDate = MakeRegularDate(sValue, sFormat, nullptr); in AFParseDateEx() local
1536 if (std::isnan(dDate)) { in AFParseDateEx()
1542 return CJS_Return(pRuntime->NewNumber(dDate)); in AFParseDateEx()