• Home
  • Raw
  • Download

Lines Matching refs:nMonth

393   int nMonth = JS_GetMonthFromTime(dt) + 1;  in ParseNormalDate()  local
423 nMonth = number[0]; in ParseNormalDate()
427 nMonth = number[1]; in ParseNormalDate()
439 nMonth = number[1]; in ParseNormalDate()
443 nMonth = number[0]; in ParseNormalDate()
449 nMonth = number[1]; in ParseNormalDate()
462 return JS_DateParse(WideString::Format(L"%d/%d/%d %d:%d:%d", nMonth, nDay, in ParseNormalDate()
475 int nMonth = JS_GetMonthFromTime(dt) + 1; in MakeRegularDate() local
524 nMonth = ParseStringInteger(value, j, &nSkip, 2); in MakeRegularDate()
567 nMonth = ParseStringInteger(value, j, &nSkip, 2); in MakeRegularDate()
610 nMonth = m + 1; in MakeRegularDate()
619 nMonth = ParseStringInteger(value, j, &nSkip, 3); in MakeRegularDate()
649 nMonth = m + 1; in MakeRegularDate()
658 nMonth = ParseStringInteger(value, j, &nSkip, 4); in MakeRegularDate()
705 bBadFormat = !IsValidMonth(nMonth) || !IsValidDay(nDay) || in MakeRegularDate()
714 dRet = JS_MakeDate(JS_MakeDay(nYear, nMonth - 1, nDay), in MakeRegularDate()
735 int nMonth = JS_GetMonthFromTime(dDate) + 1; in MakeFormatDate() local
761 sPart = WideString::Format(L"%d", nMonth); in MakeFormatDate()
790 sPart = WideString::Format(L"%02d", nMonth); in MakeFormatDate()
817 if (IsValidMonth(nMonth)) in MakeFormatDate()
818 sPart += kMonths[nMonth - 1]; in MakeFormatDate()
835 if (IsValidMonth(nMonth)) in MakeFormatDate()
836 sPart += kFullMonths[nMonth - 1]; in MakeFormatDate()
1197 int nMonth = 1; in MakeInterDate() local
1201 nMonth = i + 1; in MakeInterDate()
1211 double dRet = JS_MakeDate(JS_MakeDay(nYear, nMonth - 1, nDay), in MakeInterDate()