Home | History | Annotate | Download | only in octane

Lines Matching full:objs

1580     this.objs = transport.objs;
1687 this.objs, params.textLayer);
1731 fonts[i] = this.objs.objs[fonts[i]].data;
1817 this.objs = new PDFObjects();
1937 if (this.objs.hasData(id))
1943 loadJpegStream(id, imageData, this.objs);
1947 this.objs.resolve(id, imageData);
1963 this.objs.resolve(id, font);
2231 function CanvasGraphics(canvasCtx, objs, textLayer) {
2238 this.objs = objs;
2306 var objs = this.objs;
2327 if (!objs.isResolved(depObjId)) {
2328 objs.get(depObjId, continueCallback);
2578 var fontObj = this.objs.get(fontRefName);
2946 var pattern = new TilingPattern(IR, color, this.ctx, this.objs);
3094 var domImage = this.objs.get(objId);
3161 var imgData = this.objs.get(objId);
4006 this.objs = {};
4010 objs: null,
4018 if (this.objs[objId])
4019 return this.objs[objId];
4020 return this.objs[objId] = new Promise(objId, data);
4042 var obj = this.objs[objId];
4056 var objs = this.objs;
4059 if (objs[objId]) {
4060 objs[objId].resolve(data);
4071 var objs = this.objs;
4072 if (!objs[objId]) {
4075 return objs[objId].isResolved;
4080 var objs = this.objs;
4081 if (!objs[objId]) {
4084 return objs[objId].hasData;
23328 function loadJpegStream(id, imageData, objs) {
23331 objs.resolve(id, img);
27122 function TilingPattern(IR, color, ctx, objs) {
27159 var graphics = new CanvasGraphics(tmpCtx, objs);