Lines Matching refs:toInt

7388 function toInt(argumentForCoercion) {
7407 (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) {
7873 array[callback] = toInt(input);
7961 array[MONTH] = toInt(input) - 1;
8088 value = toInt(value);
8224 array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
8246 return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
8364 week[token.substr(0, 1)] = toInt(input);
8456 week[token] = toInt(input);
8823 var kInput = toInt(input);
8831 array[HOUR] = toInt(input);
8836 array[HOUR] = toInt(input.substr(0, pos));
8837 array[MINUTE] = toInt(input.substr(pos));
8843 array[HOUR] = toInt(input.substr(0, pos1));
8844 array[MINUTE] = toInt(input.substr(pos1, 2));
8845 array[SECOND] = toInt(input.substr(pos2));
8850 array[HOUR] = toInt(input.substr(0, pos));
8851 array[MINUTE] = toInt(input.substr(pos));
8856 array[HOUR] = toInt(input.substr(0, pos1));
8857 array[MINUTE] = toInt(input.substr(pos1, 2));
8858 array[SECOND] = toInt(input.substr(pos2));
9793 if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {
9901 var minutes = +(parts[1] * 60) + toInt(parts[2]);
10112 d : toInt(match[DATE]) * sign,
10113 h : toInt(match[HOUR]) * sign,
10114 m : toInt(match[MINUTE]) * sign,
10115 s : toInt(match[SECOND]) * sign,
10116 …ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is include…
10650 week[token.substr(0, 2)] = toInt(input);
10721 array[MONTH] = (toInt(input) - 1) * 3;
10754 array[DATE] = toInt(input.match(match1to2)[0], 10);
10777 config._dayOfYear = toInt(input);
10884 array[MILLISECOND] = toInt(('0.' + input) * 1000);
11157 output = (toInt(number % 100 / 10) === 1) ? 'th' :
11313 toInt(this._months / 12) * 31536e6
11547 config._d = new Date(toInt(input));