Lines Matching refs:pos

4590     value: function insertRow(pos, value) {
4592 this.spliceRows(pos, 0, value);
4594 this._setStyleOption(pos, style);
4596 return this.getRow(pos);
4600 value: function insertRows(pos, values) {
4602 this.spliceRows.apply(this, [pos, 0].concat(_toConsumableArray(values)));
4607 if (style[0] === 'o' && this.findRow(values.length + pos + i) !== undefined) {
4608 this._copyStyle(values.length + pos + i, pos + i, style[1] === '+');
4609 } else if (style[0] === 'i' && this.findRow(pos - 1) !== undefined) {
4610 this._copyStyle(pos - 1, pos + i, style[1] === '+');
4615 return this.getRows(pos, values.length);
4620 value: function _setStyleOption(pos) {
4623 if (style[0] === 'o' && this.findRow(pos + 1) !== undefined) {
4624 this._copyStyle(pos + 1, pos, style[1] === '+');
4625 } else if (style[0] === 'i' && this.findRow(pos - 1) !== undefined) {
4626 this._copyStyle(pos - 1, pos, style[1] === '+');
39132 var pos = 0;
39145 buf.copy(buffer, pos);
39146 pos += buf.length;
50287 function sum64(buf, pos, ah, al) {
50288 var bh = buf[pos];
50289 var bl = buf[pos + 1];
50292 buf[pos] = hi >>> 0;
50293 buf[pos + 1] = lo;
50958 function crc32(crc, buf, len, pos) {
50960 end = pos + len;
50963 for (var i = pos; i < end; i++) {
50982 function crc32str(crc, str, len, pos) {
50984 end = pos + len;
50987 for (var i = pos; i < end; i++) {
53757 var pos;
53765 pos = max - 1;
53767 while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) {
53768 pos--;
53773 if (pos < 0) {
53779 if (pos === 0) {
53783 return pos + _utf8len[buf[pos]] > max ? pos : max;
62658 var i, l, len, pos, chunk, result; // calculate data length
62668 pos = 0;
62672 result.set(chunk, pos);
62673 pos += chunk.length;
62903 var pos;
62911 pos = max - 1;
62913 while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) {
62914 pos--;
62919 if (pos < 0) {
62925 if (pos === 0) {
62929 return pos + _utf8len[buf[pos]] > max ? pos : max;
62955 function adler32(adler, buf, len, pos) {
62968 s1 = s1 + buf[pos++] | 0;
63090 function crc32(crc, buf, len, pos) {
63092 end = pos + len;
63095 for (var i = pos; i < end; i++) {
71365 function startsWith(str, search, pos) {
71366 return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;