Lines Matching refs:objectGroupName
259 …_wrapObject: function(object, objectGroupName, forceValueType, generatePreview, columnNames, isTab… argument
262 …return new InjectedScript.RemoteObject(object, objectGroupName, doNotBind, forceValueType, generat…
278 _bind: function(object, objectGroupName) argument
280 var id = InjectedScriptHost.bind(object, objectGroupName || "");
292 …getProperties: function(object, objectGroupName, ownProperties, accessorPropertiesOnly, generatePr… argument
307 descriptor.get = this._wrapObject(descriptor.get, objectGroupName);
309 descriptor.set = this._wrapObject(descriptor.set, objectGroupName);
311 … descriptor.value = this._wrapObject(descriptor.value, objectGroupName, false, generatePreview);
317 descriptor.symbol = this._wrapObject(descriptor.symbol, objectGroupName);
511 _substituteObjectTagsInCustomPreview: function(objectGroupName, jsonMLObject) argument
529 …jsonMLObject[1] = this._wrapObject(originObject, objectGroupName, false, false, null, false, false…
534 this._substituteObjectTagsInCustomPreview(objectGroupName, jsonMLObject[i]);
732 InjectedScript.RemoteObject = function(object, objectGroupName, doNotBind, forceValueType, generate… argument
781 this.objectId = injectedScript._bind(object, objectGroupName);
798 var customPreview = this._customPreview(object, objectGroupName, customObjectConfig);
812 _customPreview: function(object, objectGroupName, customObjectConfig) argument
830 …return injectedScript._wrapObject(object, objectGroupName, false, false, null, false, false, custo…
845 injectedScript._substituteObjectTagsInCustomPreview(objectGroupName, formatted);
846 var formatterObjectId = injectedScript._bind(formatters[i], objectGroupName);
847 var bindRemoteObjectFunctionId = injectedScript._bind(wrap, objectGroupName);
850 … result["configObjectId"] = injectedScript._bind(customObjectConfig, objectGroupName);