Lines Matching refs:HOUR
725 var HOUR = 3;
1711 addParseToken(['H', 'HH'], HOUR);
1714 array[HOUR] = kInput === 24 ? 0 : kInput;
1721 array[HOUR] = toInt(input);
1726 array[HOUR] = toInt(input.substr(0, pos));
1733 array[HOUR] = toInt(input.substr(0, pos1));
1740 array[HOUR] = toInt(input.substr(0, pos));
1746 array[HOUR] = toInt(input.substr(0, pos1));
1985 …a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== …
2073 if (config._a[HOUR] === 24 &&
2078 config._a[HOUR] = 0;
2091 config._a[HOUR] = 24;
2442 if (config._a[HOUR] <= 12 &&
2444 config._a[HOUR] > 0) {
2451 config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);
3034 h : toInt(match[HOUR]) * sign,