Lines Matching refs:id

3118         id: this._number,
4028 var id = this.nextId;
4045 name = (name || "sheet".concat(id)).substring(0, 31);
4081 id: id,
4087 this._worksheets[id] = worksheet;
4093 delete this._worksheets[worksheet.id];
4097 value: function removeWorksheet(id) {
4098 var worksheet = this.getWorksheet(id);
4106 value: function getWorksheet(id) {
4107 if (id === undefined) {
4111 if (typeof id === 'number') {
4112 return this._worksheets[id];
4115 if (typeof id === 'string') {
4117 return worksheet && worksheet.name === id;
4127 iteratee(sheet, sheet.id);
4140 var id = this.media.length;
4144 return id;
4148 value: function getImage(id) {
4149 return this.media[id];
4243 var id = worksheetModel.id,
4247 return ws.id === id;
4249 var worksheet = _this._worksheets[id] = new Worksheet({
4250 id: id,
4328 this.id = options.id;
4331 this.name = options.name || "Sheet".concat(this.id); // add a state
5262 id: this.id,
8460 sheetId: model.id,
8472 id: parseInt(node.attributes.sheetId, 10),
8982 worksheet.id = sheet.id;
9770 id: '_x0000_t202',
10016 id: "_x0000_s".concat(1025 + index),
10626 var name = "/xl/worksheets/sheet".concat(worksheet.id, ".xml");
11563 id: model.index,
11983 id: '{00000000-0008-0000-0000-000002000000}'
13714 id: model.x14Id
13725 id: model.x14Id || "{".concat(uuidv4(), "}")
13736 x14Id: attributes.id,
18909 Target: "../comments".concat(model.id, ".xml")
18915 Target: "../drawings/vmlDrawing".concat(model.id, ".vml")
18922 commentName: "comments".concat(model.id),
18923 vmlDrawing: "vmlDrawing".concat(model.id)
22059 _.each(defaultNumFormats, function (dnf, id) {
22061 hash[dnf.f] = parseInt(id, 10);
22076 function NumFmtXform(id, formatCode) {
22082 _this.id = id;
22091 numFmtId: model.id,
22101 id: parseInt(node.attributes.numFmtId, 10),
22764 numFmtIndex[numFmt.id] = numFmt.formatCode;
22857 value: function getStyleModel(id) {
22859 var style = this.model.styles[id];
22862 var model = this.index.model[id];
22865 model = this.index.model[id] = {}; // -------------------------------------------------------
22911 value: function getDxfStyle(id) {
22912 return this.model.dxfs[id];
22942 id: index,
23518 model.id = options.index + 1;
23524 id: model.id.toString(),
23733 id: model.id,
25147 Target: "worksheets/sheet".concat(worksheet.id, ".xml")
25276 name: "xl/worksheets/sheet".concat(worksheet.id, ".xml")
25283 name: "xl/worksheets/_rels/sheet".concat(worksheet.id, ".xml.rels")
25291 name: "xl/comments".concat(worksheet.id, ".xml")
25296 name: "xl/drawings/vmlDrawing".concat(worksheet.id, ".vml")
25362 table.id = tableCount;
38302 algorithms[key].id = Buffer.from(algorithms[key].id, 'hex');
38312 this._tag = data.id;
38346 this._tag = data.id;
42328 var run = function (id) {
42330 if (queue.hasOwnProperty(id)) {
42331 var fn = queue[id];
42332 delete queue[id];
42337 var runner = function (id) {
42339 run(id);
42347 var post = function (id) {
42349 global.postMessage(id + '', location.protocol + '//' + location.host);
42365 clear = function clearImmediate(id) {
42366 delete queue[id];
42370 defer = function (id) {
42371 process.nextTick(runner(id));
42375 defer = function (id) {
42376 Dispatch.now(runner(id));
42398 defer = function (id) {
42401 run(id);
42406 defer = function (id) {
42407 setTimeout(runner(id), 0);
42497 var id = 0;
42501 return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
54582 id: extraFieldId,
54984 id: extraFieldId,
81671 function Timeout(id, clearFn) {
81672 this._id = id;
81706 var id = nextImmediateId++;
81708 immediateIds[id] = true;
81710 if (immediateIds[id]) {
81720 exports.clearImmediate(id);
81723 return id;
81725 exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate : function (id) {
81726 delete immediateIds[id];