Lines Matching refs:table

3431   function Column(table, column, index) {
3434 this.table = table;
3442 this.table.cacheState();
3511 function Table(worksheet, table) {
3516 if (table) {
3517 this.table = table; // check things are ok first
3533 return "SUBTOTAL(101,".concat(this.table.name, "[").concat(column.name, "])");
3536 return "SUBTOTAL(102,".concat(this.table.name, "[").concat(column.name, "])");
3539 return "SUBTOTAL(103,".concat(this.table.name, "[").concat(column.name, "])");
3542 return "SUBTOTAL(104,".concat(this.table.name, "[").concat(column.name, "])");
3545 return "SUBTOTAL(105,".concat(this.table.name, "[").concat(column.name, "])");
3548 return "SUBTOTAL(106,".concat(this.table.name, "[").concat(column.name, "])");
3551 return "SUBTOTAL(107,".concat(this.table.name, "[").concat(column.name, "])");
3554 return "SUBTOTAL(109,".concat(this.table.name, "[").concat(column.name, "])");
3568 var table = this.table; // set defaults and check is valid
3576 assign(table, 'headerRow', true);
3577 assign(table, 'totalsRow', false);
3578 assign(table, 'style', {});
3579 assign(table.style, 'theme', 'TableStyleMedium2');
3580 assign(table.style, 'showFirstColumn', false);
3581 assign(table.style, 'showLastColumn', false);
3582 assign(table.style, 'showRowStripes', false);
3583 assign(table.style, 'showColumnStripes', false);
3591 assert(table.ref, 'Table must have ref');
3592 assert(table.columns, 'Table must have column definitions');
3593 assert(table.rows, 'Table must have row definitions');
3594 table.tl = colCache.decodeAddress(table.ref);
3595 var _table$tl = table.tl,
3604table.autoFilterRef = colCache.encode(row, col, row + filterHeight - 1, col + width - 1); // table…
3606 table.tableRef = colCache.encode(row, col, row + tableHeight - 1, col + width - 1);
3607 table.columns.forEach(function (column, i) {
3634 table = this.table;
3635 var _table$tl2 = table.tl,
3640 if (table.headerRow) {
3642 table.columns.forEach(function (column, j) {
3651 table.rows.forEach(function (data) {
3656 assignStyle(cell, table.columns[j].style);
3660 if (table.totalsRow) {
3663 table.columns.forEach(function (column, j) {
3691 var table = this.table;
3692 var _table$tl3 = table.tl,
3697 if (table.headerRow) {
3699 table.columns.forEach(function (column, j) {
3705 table.rows.forEach(function (data) {
3713 if (table.totalsRow) {
3716 table.columns.forEach(function (column, j) {
3802 this.table.rows.push(values);
3804 this.table.rows.splice(rowNumber, 0, values);
3813 this.table.rows.splice(rowIndex, count);
3818 var column = this.table.columns[colIndex];
3829 this.table.columns.push(column);
3830 this.table.rows.forEach(function (row, i) {
3834 this.table.columns.splice(colIndex, 0, column);
3835 this.table.rows.forEach(function (row, i) {
3846 this.table.columns.splice(colIndex, count);
3847 this.table.rows.forEach(function (row) {
3863 return this.table.columns.length;
3869 return this.table.rows.length;
3875 return this.height + (this.table.headerRow ? 1 : 0);
3881 return this.filterHeight + (this.table.totalsRow ? 1 : 0);
3886 return this.table;
3889 this.table = value;
3894 return this.table.ref;
3897 this._assign(this.table, 'ref', value);
3902 return this.table.name;
3905 this.table.name = value;
3910 return this.table.displyName || this.table.name;
3915 this.table.displayName = value;
3920 return this.table.headerRow;
3923 this._assign(this.table, 'headerRow', value);
3928 return this.table.totalsRow;
3931 this._assign(this.table, 'totalsRow', value);
3936 return this.table.style.name;
3939 this.table.style.name = value;
3944 return this.table.style.showFirstColumn;
3947 this.table.style.showFirstColumn = value;
3952 return this.table.style.showLastColumn;
3955 this.table.style.showLastColumn = value;
3960 return this.table.style.showRowStripes;
3963 this.table.style.showRowStripes = value;
3968 return this.table.style.showColumnStripes;
3971 this.table.style.showColumnStripes = value;
5053 var table = new Table(this, model);
5054 this.tables[model.name] = table;
5055 return table;
5276 tables: Object.values(this.tables).map(function (table) {
5277 return table.model;
5328 this.tables = value.tables.reduce(function (tables, table) {
5330 t.model = table;
5331 tables[table.name] = t;
10650 model.tables.forEach(function (table) {
10652 PartName: "/xl/tables/".concat(table.target),
19000 model.tables.forEach(function (table) {
19003 table.rId = rId;
19007 Target: "../tables/".concat(table.target)
19010 table.columns.forEach(function (column) {
24039 Object.values(model.tables).forEach(function (table) {
24040 tableXform.reconcile(table, tableOptions);
24138 var xform, table;
24148 table = _context4.sent;
24149 model.tables["../tables/".concat(name, ".xml")] = table;
24944 tables.forEach(function (table) {
24945 tableXform.prepare(table, {});
24946 var tableXml = tableXform.toXml(table);
24948 name: "xl/tables/".concat(table.target)
25359 worksheet.tables.forEach(function (table) {
25361 table.target = "table".concat(tableCount, ".xml");
25362 table.id = tableCount;
25363 model.tables.push(table);
50940 table = [];
50949 table[n] = c;
50952 return table;
63072 table = [];
63081 table[n] = c;
63084 return table;
67928 module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, op…
68046 table[table_index++] = 1 << 24 | 64 << 16 | 0; //table.op[opts.table_index] = 64;
68050 table[table_index++] = 1 << 24 | 64 << 16 | 0;
68214 table[next + (huff >> drop) + fill] = here_bits << 24 | here_op << 16 | here_val | 0;
68288 table[low] = root << 24 | curr << 16 | next - table_index | 0;
68300 table[next + huff] = len - drop << 24 | 64 << 16 | 0;