Lines Matching refs:toInt

268 function toInt(argumentForCoercion) {  function
287 (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) {
701 array[callback] = toInt(input);
765 array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
787 return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
917 array[MONTH] = toInt(input) - 1;
1044 value = toInt(value);
1254 week[token.substr(0, 1)] = toInt(input);
1346 week[token] = toInt(input);
1713 var kInput = toInt(input);
1721 array[HOUR] = toInt(input);
1726 array[HOUR] = toInt(input.substr(0, pos));
1727 array[MINUTE] = toInt(input.substr(pos));
1733 array[HOUR] = toInt(input.substr(0, pos1));
1734 array[MINUTE] = toInt(input.substr(pos1, 2));
1735 array[SECOND] = toInt(input.substr(pos2));
1740 array[HOUR] = toInt(input.substr(0, pos));
1741 array[MINUTE] = toInt(input.substr(pos));
1746 array[HOUR] = toInt(input.substr(0, pos1));
1747 array[MINUTE] = toInt(input.substr(pos1, 2));
1748 array[SECOND] = toInt(input.substr(pos2));
2714 if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {
2822 var minutes = +(parts[1] * 60) + toInt(parts[2]);
3033 d : toInt(match[DATE]) * sign,
3034 h : toInt(match[HOUR]) * sign,
3035 m : toInt(match[MINUTE]) * sign,
3036 s : toInt(match[SECOND]) * sign,
3037 …ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is include…
3572 week[token.substr(0, 2)] = toInt(input);
3643 array[MONTH] = (toInt(input) - 1) * 3;
3676 array[DATE] = toInt(input.match(match1to2)[0]);
3699 config._dayOfYear = toInt(input);
3806 array[MILLISECOND] = toInt(('0.' + input) * 1000);
4079 output = (toInt(number % 100 / 10) === 1) ? 'th' :
4235 toInt(this._months / 12) * 31536e6
4482 config._d = new Date(toInt(input));