Lines Matching refs:left

2200         for (var col = location.left; col <= location.right; col++) {
2525 col: decoded.left,
2665 left: Math.min(tl.col, br.col),
2675 left: Math.min(l, r),
2714 left: value.model.left,
2722 } else if (value.top && value.left && value.bottom && value.right) {
2726 left: value.left,
2738 left: tlbr.left,
2746 left: tlbr.col,
2760 left: 0,
2772 value: function expand(top, left, bottom, right) {
2774 if (!this.model.left || left < this.left) this.left = left;
2807 if (other.right < this.left) return false;
2808 if (other.left > this.right) return false;
2821 …return address.row >= this.top && address.row <= this.bottom && address.col >= this.left && addres…
2826 for (var col = this.left; col <= this.right; col++) {
2843 return this.model.left || 1;
2846 this.model.left = value;
2890 return colCache.n2l(this.left) + this.top;
2895 return "$".concat(colCache.n2l(this.left), "$").concat(this.top);
2930 return (1 + this.bottom - this.top) * (1 + this.right - this.left);
3115 var left = Math.max(0, lft - 1) || 0;
3122 if (left) pb.min = left;
4356 left: 0.7,
4850 var master = this.getCell(dimensions.top, dimensions.left);
4853 for (var j = dimensions.left; j <= dimensions.right; j++) {
4855 if (i > dimensions.top || j > dimensions.left) {
4872 for (var j = merge.left; j <= merge.right; j++) {
4893 for (var j = dimensions.left; j <= dimensions.right; j++) {
4917 left = decoded.left,
4920 var width = right - left + 1;
4921 var masterAddress = colCache.encodeAddress(top, left);
4931 return results[row - top][col - left];
4936 return results[(row - top) * width + (col - left)];
4948 for (var c = left; c <= right; c++) {
5484 for (var col = address.left; col <= address.right; col++) {
5864 left: Math.min(tl.col, br.col),
5869 result.tl = this.n2l(result.left) + result.top;
5890 var left = Math.min(tl.col, br.col);
5893 tl = this.n2l(left) + top;
5897 left: left,
5903 col: left,
5905 $col$row: "$".concat(this.n2l(left), "$").concat(top),
5953 left = _range[0],
5962 return col >= left && col <= right && row >= top && row <= bottom;
9484 var l = Math.floor(anchor.left);
9485 var lf = Math.floor((anchor.left - l) * 68);
16921 for (var j = dimensions.left; j <= dimensions.right; j++) {
17164 left: model.left,
17185 left: parseFloat(node.attributes.left || 0.7),
20909 left: new EdgeXform('left'),
20944 add(model.left, this.map.left);
21008 add('left', this.map.left.model);
21560 if (model.center.left) {
21561 xmlStream.addAttribute('left', model.center.left);
21564 xmlStream.addAttribute('right', model.center.left);
21617 left: node.attributes.left ? parseFloat(node.attributes.left) : 0,
21621 if (node.attributes.right !== node.attributes.left) {
29222 …'only latin upper and lower case letters, ' + 'digits, space, apostrophe, left and rigth ' + 'pare…
29503 BN.max = function max(left, right) {
29504 if (left.cmp(right) > 0) return left;
29508 BN.min = function min(left, right) {
29509 if (left.cmp(right) < 0) return left;
33092 BN.max = function max(left, right) {
33093 if (left.cmp(right) > 0) return left;
33097 BN.min = function min(left, right) {
33098 if (left.cmp(right) < 0) return left;
66341 var have, left;
66400 left = strm.avail_out;
66408 _out = left;
66837 strm.avail_out = left;
66985 if (copy > left) {
66986 copy = left;
66998 left -= copy;
67297 if (have >= 6 && left >= 258) {
67300 strm.avail_out = left;
67310 left = strm.avail_out;
67562 if (left === 0) {
67566 copy = _out - left;
67614 if (copy > left) {
67615 copy = left;
67618 left -= copy;
67632 if (left === 0) {
67637 left--;
67656 _out -= left;
67666 _out = left; // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
67743 strm.avail_out = left;
67950 var left = 0;
68068 left = 1;
68071 left <<= 1;
68072 left -= count[len];
68074 if (left < 0) {
68081 if (left > 0 && (type === CODES || max !== 1)) {
68260 left = 1 << curr;
68263 left -= count[curr + drop];
68265 if (left <= 0) {
68270 left <<= 1;