Home | History | Annotate | Download | only in javascript

Lines Matching refs:dDate

904 CFX_WideString CJS_PublicMethods::MakeFormatDate(double dDate, const CFX_WideString & format)
908 int nYear = JS_GetYearFromTime(dDate);
909 int nMonth = JS_GetMonthFromTime(dDate) + 1;
910 int nDay = JS_GetDayFromTime(dDate);
911 int nHour = JS_GetHourFromTime(dDate);
912 int nMin = JS_GetMinFromTime(dDate);
913 int nSec = JS_GetSecFromTime(dDate);
1527 double dDate = 0.0f;
1533 dDate = MakeInterDate(strValue);
1537 dDate = MakeRegularDate(strValue,sFormat,bWrongFormat);
1540 if (JS_PortIsNan(dDate))
1548 val = MakeFormatDate(dDate,sFormat);
2036 double dDate = MakeRegularDate(sValue,sFormat,bWrongFormat);
2038 if (JS_PortIsNan(dDate))
2046 vRet = dDate;