Home | History | Annotate | Download | only in octane

Lines Matching full:objid

3093     paintJpegXObject: function CanvasGraphics_paintJpegXObject(objId, w, h) {
3094 var domImage = this.objs.get(objId);
3160 paintImageXObject: function CanvasGraphics_paintImageXObject(objId) {
3161 var imgData = this.objs.get(objId);
4014 * Ensures there is an object defined for `objId`. Stores `data` on the
4017 ensureObj: function PDFObjects_ensureObj(objId, data) {
4018 if (this.objs[objId])
4019 return this.objs[objId];
4020 return this.objs[objId] = new Promise(objId, data);
4024 * If called *without* callback, this returns the data of `objId` but the
4032 get: function PDFObjects_get(objId, callback) {
4036 this.ensureObj(objId).then(callback);
4042 var obj = this.objs[objId];
4047 error('Requesting object that isn\'t resolved yet ' + objId);
4053 * Resolves the object `objId` with optional `data`.
4055 resolve: function PDFObjects_resolve(objId, data) {
4059 if (objs[objId]) {
4060 objs[objId].resolve(data);
4062 this.ensureObj(objId, data);
4066 onData: function PDFObjects_onData(objId, callback) {
4067 this.ensureObj(objId).onData(callback);
4070 isResolved: function PDFObjects_isResolved(objId) {
4072 if (!objs[objId]) {
4075 return objs[objId].isResolved;
4079 hasData: function PDFObjects_hasData(objId) {
4081 if (!objs[objId]) {
4084 return objs[objId].hasData;
4091 setData: function PDFObjects_setData(objId, data) {
4092 objId, data)` you're going to
4094 this.ensureObj(objId).data = data;
13371 var objId = 'img_' + uniquePrefix + (++self.objIdCounter);
13372 insertDependency([objId]);
13373 args = [objId, w, h];
13380 handler.send('obj', [objId
13396 handler.send('obj', [objId, 'Image', imgData]);