Home | History | Annotate | Download | only in javascript

Lines Matching defs:nHour

275   int nHour = JS_GetHourFromTime(dt);
344 swTemp.Format(L"%d/%d/%d %d:%d:%d", nMonth, nDay, nYear, nHour, nMin, nSec);
359 int nHour = JS_GetHourFromTime(dt);
416 nHour = ParseStringInteger(value, j, nSkip, 2);
421 nHour = ParseStringInteger(value, j, nSkip, 2);
459 nHour = ParseStringInteger(value, j, nSkip, 2);
464 nHour = ParseStringInteger(value, j, nSkip, 2);
581 nHour += 12;
592 if (nHour < 0 || nHour > 24)
606 JS_MakeTime(nHour, nMin, nSec, 0));
627 int nHour = JS_GetHourFromTime(dDate);
657 sPart.Format(L"%d", nHour);
660 sPart.Format(L"%d", nHour > 12 ? nHour - 12 : nHour);
669 sPart += nHour > 12 ? 'p' : 'a';
685 sPart.Format(L"%02d", nHour);
688 sPart.Format(L"%02d", nHour > 12 ? nHour - 12 : nHour);
697 sPart = nHour > 12 ? L"pm" : L"am";
1185 int nHour = FX_atof(wsArray[3].AsStringC());
1190 JS_MakeTime(nHour, nMin, nSec, 0));