Lines Matching refs:nMonth

273   int nMonth = JS_GetMonthFromTime(dt) + 1;  in ParseNormalDate()  local
303 nMonth = number[0]; in ParseNormalDate()
308 nMonth = number[1]; in ParseNormalDate()
321 nMonth = number[1]; in ParseNormalDate()
325 nMonth = number[0]; in ParseNormalDate()
331 nMonth = number[1]; in ParseNormalDate()
344 swTemp.Format(L"%d/%d/%d %d:%d:%d", nMonth, nDay, nYear, nHour, nMin, nSec); in ParseNormalDate()
357 int nMonth = JS_GetMonthFromTime(dt) + 1; in MakeRegularDate() local
406 nMonth = ParseStringInteger(value, j, nSkip, 2); in MakeRegularDate()
449 nMonth = ParseStringInteger(value, j, nSkip, 2); in MakeRegularDate()
492 nMonth = m + 1; in MakeRegularDate()
501 nMonth = ParseStringInteger(value, j, nSkip, 3); in MakeRegularDate()
531 nMonth = m + 1; in MakeRegularDate()
540 nMonth = ParseStringInteger(value, j, nSkip, 4); in MakeRegularDate()
586 if (nMonth < 1 || nMonth > 12) in MakeRegularDate()
605 dRet = JS_MakeDate(JS_MakeDay(nYear, nMonth - 1, nDay), in MakeRegularDate()
625 int nMonth = JS_GetMonthFromTime(dDate) + 1; in MakeFormatDate() local
651 sPart.Format(L"%d", nMonth); in MakeFormatDate()
679 sPart.Format(L"%02d", nMonth); in MakeFormatDate()
705 if (nMonth > 0 && nMonth <= 12) in MakeFormatDate()
706 sPart += months[nMonth - 1]; in MakeFormatDate()
723 if (nMonth > 0 && nMonth <= 12) in MakeFormatDate()
724 sPart += fullmonths[nMonth - 1]; in MakeFormatDate()
1157 int nMonth = 1; in MakeInterDate() local
1160 nMonth = 1; in MakeInterDate()
1162 nMonth = 2; in MakeInterDate()
1164 nMonth = 3; in MakeInterDate()
1166 nMonth = 4; in MakeInterDate()
1168 nMonth = 5; in MakeInterDate()
1170 nMonth = 6; in MakeInterDate()
1172 nMonth = 7; in MakeInterDate()
1174 nMonth = 8; in MakeInterDate()
1176 nMonth = 9; in MakeInterDate()
1178 nMonth = 10; in MakeInterDate()
1180 nMonth = 11; in MakeInterDate()
1182 nMonth = 12; in MakeInterDate()
1189 double dRet = JS_MakeDate(JS_MakeDay(nYear, nMonth - 1, nDay), in MakeInterDate()