Lines Matching refs:entry

1066     var entry = {
1071 entry.catchLoc = locs[1];
1075 entry.finallyLoc = locs[2];
1076 entry.afterLoc = locs[3];
1079 this.tryEntries.push(entry);
1082 function resetTryEntry(entry) {
1083 var record = entry.completion || {};
1086 entry.completion = record;
1219 var entry = this.tryEntries[i];
1220 var record = entry.completion;
1222 if (entry.tryLoc === "root") {
1226 if (entry.tryLoc <= this.prev) {
1227 var hasCatch = hasOwn.call(entry, "catchLoc");
1228 var hasFinally = hasOwn.call(entry, "finallyLoc");
1231 if (this.prev < entry.catchLoc) {
1232 return handle(entry.catchLoc, true);
1233 } else if (this.prev < entry.finallyLoc) {
1234 return handle(entry.finallyLoc);
1237 if (this.prev < entry.catchLoc) {
1238 return handle(entry.catchLoc, true);
1241 if (this.prev < entry.finallyLoc) {
1242 return handle(entry.finallyLoc);
1252 var entry = this.tryEntries[i];
1254 …if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc)…
1255 var finallyEntry = entry;
1295 var entry = this.tryEntries[i];
1297 if (entry.finallyLoc === finallyLoc) {
1298 this.complete(entry.completion, entry.afterLoc);
1299 resetTryEntry(entry);
1306 var entry = this.tryEntries[i];
1308 if (entry.tryLoc === tryLoc) {
1309 var record = entry.completion;
1313 resetTryEntry(entry);
5373 var entry = findUncaughtFrozen(this, key);
5374 if (entry) return entry[1];
5380 var entry = findUncaughtFrozen(this, key);
5381 if (entry) entry[1] = value;else this.a.push([key, value]);
9174 var entry = this._queue.shift();
9176 this._queueTotalSize -= entry.byteLength;
9181 view = new Uint8Array(entry.buffer, entry.byteOffset, entry.byteLength);
14663 var entry = {};
14664 entry.offset = parser.getObj();
14665 entry.gen = parser.getObj();
14671 entry.free = true;
14675 entry.uncompressed = true;
14680 …if (!Number.isInteger(entry.offset) || !Number.isInteger(entry.gen) || !(entry.free || entry.uncom…
14684 if (i === 0 && entry.free && first === 1) {
14689 this.entries[i + first] = entry;
14774 var entry = {};
14775 entry.offset = offset;
14776 entry.gen = generation;
14780 entry.free = true;
14784 entry.uncompressed = true;
14795 this.entries[first + i] = entry;
15250 var entry = this.entries[num];
15252 if (entry && entry.offset === tableOffset && entry.gen === i) {
32768 var entry = encoding.getRaw(keys[i]);
32770 if ((0, _primitives.isName)(entry)) {
32771 hash.update(entry.name);
32772 } else if ((0, _primitives.isRef)(entry)) {
32773 hash.update(entry.toString());
32774 } else if (Array.isArray(entry)) {
32775 var diffLength = entry.length,
32779 var diffEntry = entry[j];
35005 entry: log2,
35048 writeInt16(file, 8, searchParams.entry);
35498 …ng16(2 * segCount) + string16(searchParams.range) + string16(searchParams.entry) + string16(search…
39033 var entry = layout[i];
39034 var key = Array.isArray(entry[0]) ? (entry[0][0] << 8) + entry[0][1] : entry[0];
39035 tables.keyToNameMap[key] = entry[1];
39036 tables.nameToKeyMap[entry[1]] = key;
39037 tables.types[key] = entry[2];
39038 tables.defaults[key] = entry[3];
39039 tables.opcodes[key] = Array.isArray(entry[0]) ? entry[0] : [entry[0]];