Lines Matching refs:object
171 function doesAttributeHaveObservableSideEffectOnGet(object, attribute) argument
176 …var isInstance = typeof interfaceFunction === "function" && /* suppressBlacklist */ object instanc…
223 isPrimitiveValue: function(object) argument
226 return InjectedScript.primitiveTypes[typeof object] && !this._isHTMLAllCollection(object);
233 _shouldPassByValue: function(object) argument
235 … return typeof object === "object" && InjectedScriptHost.subtype(object) === "internal#location";
245 wrapObject: function(object, groupName, forceValueType, generatePreview) argument
247 return this._wrapObject(object, groupName, forceValueType, generatePreview);
296 …_wrapObject: function(object, objectGroupName, forceValueType, generatePreview, columnNames, isTab… argument
299 …return new InjectedScript.RemoteObject(object, objectGroupName, doNotBind, forceValueType, generat…
315 _bind: function(object, objectGroupName) argument
317 var id = InjectedScriptHost.bind(object, objectGroupName || "");
329 …getProperties: function(object, objectGroupName, ownProperties, accessorPropertiesOnly, generatePr… argument
331 var subtype = this._subtype(object);
336 object = object.object;
340 … var iter = this._propertyDescriptors(object, ownProperties, accessorPropertiesOnly, undefined);
366 _objectPrototype: function(object) argument
368 if (InjectedScriptHost.subtype(object) === "proxy")
371 return Object.getPrototypeOf(object);
383 … _propertyDescriptors: function*(object, ownProperties, accessorPropertiesOnly, propertyNamesOnly) argument
409 …criptHost.formatAccessorsAsProperties(object, descriptor.get) && !doesAttributeHaveObservableSideE…
410 descriptor.value = object[property];
421 if (o === object)
438 if (o === object)
449 for (var o = object; this._isDefined(o); o = this._objectPrototype(o)) {
473 …skipGetOwnPropertyNames = InjectedScriptHost.subtype(object) === "typedarray" && object.length > 5…
477 for (var o = object; this._isDefined(o); o = this._objectPrototype(o)) {
480 if (skipGetOwnPropertyNames && o === object) {
542 _isDefined: function(object) argument
544 return !!object || this._isHTMLAllCollection(object);
551 _isHTMLAllCollection: function(object) argument
554 return (typeof object === "undefined") && !!InjectedScriptHost.subtype(object);
715 InjectedScript.RemoteObject = function(object, objectGroupName, doNotBind, forceValueType, generate… argument
717 this.type = typeof object;
718 if (this.type === "undefined" && injectedScript._isHTMLAllCollection(object))
721 if (injectedScript.isPrimitiveValue(object) || object === null || forceValueType) {
724 this.value = object;
727 if (object === null)
732 this.description = toStringDescription(object);
747 if (injectedScript._shouldPassByValue(object)) {
748 this.value = object;
749 this.subtype = injectedScript._subtype(object);
750 this.description = injectedScript._describeIncludingPrimitives(object);
754 object = /** @type {!Object} */ (object);
757 this.objectId = injectedScript._bind(object, objectGroupName);
758 var subtype = injectedScript._subtype(object);
761 var className = InjectedScriptHost.internalConstructorName(object);
764 this.description = injectedScript._describe(object);
768 …this.preview = this._generatePreview(InjectedScriptHost.proxyTargetValue(object), undefined, colum…
770 … this.preview = this._generatePreview(object, undefined, columnNames, isTable, skipEntriesPreview);
774 var customPreview = this._customPreview(object, objectGroupName, customObjectConfig);
788 _customPreview: function(object, objectGroupName, customObjectConfig) argument
804 function wrap(object, customObjectConfig) argument
806 …return injectedScript._wrapObject(object, objectGroupName, false, false, null, false, false, custo…
816 var formatted = formatters[i].header(object, customObjectConfig);
820 var hasBody = formatters[i].hasBody(object, customObjectConfig);
863 _generatePreview: function(object, firstLevelKeys, secondLevelKeys, isTable, skipEntriesPreview) argument
875 …var descriptors = injectedScript._propertyDescriptors(object, undefined, undefined, firstLevelKeys…
882 var rawInternalProperties = InjectedScriptHost.getInternalProperties(object) || [];