Lines Matching refs:right

2200         for (var col = location.left; col <= location.right; col++) {
2529 col: decoded.right,
2667 right: Math.max(tl.col, br.col),
2677 right: Math.max(l, r),
2716 right: value.model.right,
2722 } else if (value.top && value.left && value.bottom && value.right) {
2728 right: value.right,
2740 right: tlbr.right,
2748 right: tlbr.col,
2762 right: 0
2772 value: function expand(top, left, bottom, right) {
2776 if (!this.model.right || right > this.right) this.right = right;
2807 if (other.right < this.left) return false;
2808 if (other.left > this.right) return false;
2821 …>= this.top && address.row <= this.bottom && address.col >= this.left && address.col <= this.right;
2826 for (var col = this.left; col <= this.right; col++) {
2859 return this.model.right || 1;
2862 this.model.right = value;
2900 return colCache.n2l(this.right) + this.bottom;
2905 return "$".concat(colCache.n2l(this.right), "$").concat(this.bottom);
2930 return (1 + this.bottom - this.top) * (1 + this.right - this.left);
3116 var right = Math.max(0, rght - 1) || 16838;
3119 max: right,
4357 right: 0.7,
4853 for (var j = dimensions.left; j <= dimensions.right; j++) {
4872 for (var j = merge.left; j <= merge.right; j++) {
4893 for (var j = dimensions.left; j <= dimensions.right; j++) {
4919 right = decoded.right;
4920 var width = right - left + 1;
4948 for (var c = left; c <= right; c++) {
5484 for (var col = address.left; col <= address.right; col++) {
5866 right: Math.max(tl.col, br.col)
5870 result.br = this.n2l(result.right) + result.bottom;
5892 var right = Math.max(tl.col, br.col);
5894 br = this.n2l(right) + bottom;
5899 right: right,
5910 col: right,
5912 $col$row: "$".concat(this.n2l(right), "$").concat(bottom),
5955 right = _range[3],
5962 return col >= left && col <= right && row >= top && row <= bottom;
9488 var r = Math.floor(anchor.right);
9489 var rf = Math.floor((anchor.right - r) * 68);
15984 var right = addr.col + (width - 1);
15986 sqref: "".concat(dv.address, ":").concat(colCache.encodeAddress(bottom, right))
16921 for (var j = dimensions.left; j <= dimensions.right; j++) {
17165 right: model.right,
17186 right: parseFloat(node.attributes.right || 0.7),
20911 right: new EdgeXform('right'),
20945 add(model.right, this.map.right);
21009 add('right', this.map.right.model);
21563 if (model.center.right === undefined) {
21568 if (model.center.right) {
21569 xmlStream.addAttribute('right', model.center.right);
21621 if (node.attributes.right !== node.attributes.left) {
21622 model.center.right = node.attributes.right ? parseFloat(node.attributes.right) : 0;
29503 BN.max = function max(left, right) {
29504 if (left.cmp(right) > 0) return left;
29505 return right;
29508 BN.min = function min(left, right) {
29509 if (left.cmp(right) < 0) return left;
29510 return right;
31646 var right = (num.words[i] | 0) * mul;
31647 w -= right & 0x3ffffff;
31648 carry = (w >> 26) - (right / 0x4000000 | 0);
33092 BN.max = function max(left, right) {
33093 if (left.cmp(right) > 0) return left;
33094 return right;
33097 BN.min = function min(left, right) {
33098 if (left.cmp(right) < 0) return left;
33099 return right;
35334 var right = (num.words[i] | 0) * mul;
35335 w -= right & 0x3ffffff;
35336 carry = (w >> 26) - (right / 0x4000000 | 0);