Lines Matching refs:entry

4204     var entry = findUncaughtFrozen(this, key);
4205 if (entry) return entry[1];
4211 var entry = findUncaughtFrozen(this, key);
4212 if (entry) entry[1] = value;else this.a.push([key, value]);
8005 var entry = this._queue.shift();
8007 this._queueTotalSize -= entry.byteLength;
8012 view = new Uint8Array(entry.buffer, entry.byteOffset, entry.byteLength);
12536 var entry = {
12541 entry.catchLoc = locs[1];
12545 entry.finallyLoc = locs[2];
12546 entry.afterLoc = locs[3];
12549 this.tryEntries.push(entry);
12552 function resetTryEntry(entry) {
12553 var record = entry.completion || {};
12556 entry.completion = record;
12689 var entry = this.tryEntries[i];
12690 var record = entry.completion;
12692 if (entry.tryLoc === "root") {
12696 if (entry.tryLoc <= this.prev) {
12697 var hasCatch = hasOwn.call(entry, "catchLoc");
12698 var hasFinally = hasOwn.call(entry, "finallyLoc");
12701 if (this.prev < entry.catchLoc) {
12702 return handle(entry.catchLoc, true);
12703 } else if (this.prev < entry.finallyLoc) {
12704 return handle(entry.finallyLoc);
12707 if (this.prev < entry.catchLoc) {
12708 return handle(entry.catchLoc, true);
12711 if (this.prev < entry.finallyLoc) {
12712 return handle(entry.finallyLoc);
12722 var entry = this.tryEntries[i];
12724 …if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc)…
12725 var finallyEntry = entry;
12765 var entry = this.tryEntries[i];
12767 if (entry.finallyLoc === finallyLoc) {
12768 this.complete(entry.completion, entry.afterLoc);
12769 resetTryEntry(entry);
12776 var entry = this.tryEntries[i];
12778 if (entry.tryLoc === tryLoc) {
12779 var record = entry.completion;
12783 resetTryEntry(entry);
16135 var entry = map[i];
16137 ctx.transform.apply(ctx, entry.transform);
16139 ctx.drawImage(tmpCanvas.canvas, entry.x, entry.y, entry.w, entry.h, 0, -1, 1, 1);
16142 var position = this.getCanvasPosition(entry.x, entry.y);
17270 var entry = desc.childNodes[j];
17271 var name = entry.nodeName.toLowerCase();
17272 this._metadata[name] = entry.textContent.trim();