Home | History | Annotate | Download | only in inspector

Lines Matching refs:objectId

74         var objectId = this._wrapObject(object, "");
89 InjectedScriptHost.inspect(objectId, hints);
99 var objectId = "{\"injectedScriptId\":" + injectedScriptId + ",\"id\":" + id + "}";
110 return InjectedScript.RemoteObject.fromObject(object, objectId);
116 _parseObjectId: function(objectId)
118 return eval("(" + objectId + ")");
142 getProperties: function(objectId, ignoreHasOwnProperty)
144 var parsedObjectId = this._parseObjectId(objectId);
179 setPropertyValue: function(objectId, propertyName, expression)
181 var parsedObjectId = this._parseObjectId(objectId);
212 releaseObject: function(objectId)
214 var parsedObjectId = this._parseObjectId(objectId);
248 evaluateOn: function(objectId, expression)
250 var parsedObjectId = this._parseObjectId(objectId);
329 _objectForId: function(objectId)
331 return this._idToWrappedObject[objectId.id];
334 nodeForObjectId: function(objectId)
336 var parsedObjectId = this._parseObjectId(objectId);
444 InjectedScript.RemoteObject = function(objectId, type, description, hasChildren)
446 if (objectId) {
447 this.objectId = objectId;
459 InjectedScript.RemoteObject.fromObject = function(object, objectId)
467 return new InjectedScript.RemoteObject(objectId, type, description, hasChildren);