Lines Matching refs:max

6394     var timeToCall = Math.max(0, 16 - (currTime - lastTime));
7719 Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;
9768 function max () {
10933 proto.max = prototypeMax;
11559 hooks.max = max;
12063 …var maxHeight = Math.max(this.instance.view.maximumVisibleElementHeight(cellTopOffset) - actualHor…
12567 spliceIndex = Math.max(openParenIndex, minusSignIndex) + 1;
12670 max,
12676 max = Math.pow(scale, power + 1);
12678 if (abs >= min && abs < max) {
13882 var max = Math.max;
13886 return index < 0 ? max(index + length, 0) : min(index, length);
14484 for (c = 0, clen = input.length, cmax = Math.max(clen, repeatCol); c < cmax; c++) {
14505 for (r = 0, rlen = input.length, rmax = Math.max(rlen, repeatRow); r < rmax; r++) {
14555 rlen = Math.max(rowInputLength, rowSelectionLength);
14568 clen = Math.max(colInputLength, colSelectionLength);
16319 (0, _number.rangeEach)(Math.min(rowFrom, rowTo), Math.max(rowFrom, rowTo), function (row) {
16322 …(0, _number.rangeEach)(Math.min(columnFrom, columnTo), Math.max(columnFrom, columnTo), function (c…
18360 return Math.max(this.from.row, this.to.row) - Math.min(this.from.row, this.to.row) + 1;
18372 return Math.max(this.from.col, this.to.col) - Math.min(this.from.col, this.to.col) + 1;
18417max(this.from.row, this.to.row) == Math.max(testedRange.from.row, testedRange.to.row) && Math.min(…
18471 …this.to = new _coords2.default(Math.max(bottomRight.row, cellCoords.row), Math.max(bottomRight.col…
18501 var resultBottomRow = Math.max(bottomRight.row, expandingBottomRight.row);
18502 var resultBottomCol = Math.max(bottomRight.col, expandingBottomRight.col);
18605 …return new _coords2.default(Math.max(this.from.row, this.to.row), Math.max(this.from.col, this.to.…
18617 …return new _coords2.default(Math.min(this.from.row, this.to.row), Math.max(this.from.col, this.to.…
18629 …return new _coords2.default(Math.max(this.from.row, this.to.row), Math.min(this.from.col, this.to.…
18707 bottom: Math.max(this.from.row, this.to.row),
18709 right: Math.max(this.from.col, this.to.col)
18713 bottom: Math.max(range.from.row, range.to.row),
18715 right: Math.max(range.from.col, range.to.col)
26521 if (coords.row < 0 || coords.row > Math.max(totalRows - 1, 0)) {
26525 if (coords.col < 0 || coords.col > Math.max(totalColumns - 1, 0)) {
27262 startRow = Math.max(totalRows - this.wot.getSetting('fixedRowsBottom'), 0);
27609 height = height === void 0 ? oversizedHeight : Math.max(height, oversizedHeight);
27621 height = height ? Math.max(height, oversizedHeight) : oversizedHeight;
28573 return Math.max(width, trimmingContainer.clientWidth);
28579 return Math.max(width, (0, _element.outerWidth)(this.instance.wtTable.TABLE));
29570 rowToSelect = Math.max(0, selectedRow - 1);
34036 row: Math.max(this.instance.countSourceRows() - 1, 0),
34037 col: Math.max(this.instance.countCols() - 1, 0)
34072 rlen = Math.min(Math.max(maxRows - 1, 0), Math.max(start.row, end.row));
34073 clen = Math.min(Math.max(maxCols - 1, 0), Math.max(start.col, end.col));
34217 …sult = this.getByRange({ row: 0, col: 0 }, { row: Math.max(this.countRows() - 1, 0), col: Math.max
34327 var endRow = Math.max(start.row, end.row);
34328 var endCol = Math.max(start.col, end.col);
36960 width = Math.max(width, _src.ViewportColumnsCalculator.DEFAULT_WIDTH);
37704 …(0, _number.rangeEach)(Math.min(range.from, range.to), Math.max(range.from, range.to), function (r…
40766 …this.populateFromArray(0, column, [[null]], Math.max(selection.start.row, selection.end.row), colu…
41692 …areaEnd = new _src.CellCoords(Math.max(bottomRightCorner.row, inputArray.length - 1 + topLeftCorne…
41709 offset.row += Math.max(nextChange[0] - change[0] - 1, 0);
41713 offset.col += Math.max(nextChange[1] - change[1] - 1, 0);
43269 var end = Math.max(from.col, to.col);
44249 width = Math.max(width, 20);
44783 var end = Math.max(from.row, to.row);
44992 var end = Math.max(from.row, to.row);
48350 var end = Math.max(from.col, to.col);
48355 var _end = Math.max(from.row, to.row);
48372 …selection.setRangeEnd(new _src.CellCoords(Math.max(instance.countRows() - 1, 0), coords.col), fals…
48381 …selection.setRangeEnd(new _src.CellCoords(coords.row, Math.max(instance.countCols() - 1, 0)), fals…
48500 calc.startRow = Math.max(calc.startRow - viewportOffset, 0);
48507 calc.startRow = Math.max(calc.startRow - offset, 0);
48520 calc.startColumn = Math.max(calc.startColumn - viewportOffset, 0);
48527 calc.startRow = Math.max(calc.startColumn - offset, 0);
50670 max = this._o.maxDate;
50674 } else if (isDate(max) && date > max) {
50675 date = max;