Lines Matching refs:object
171 function doesAttributeHaveObservableSideEffectOnGet(object, attribute) argument
176 …var isInstance = typeof interfaceFunction === "function" && /* suppressBlacklist */ object instanc…
220 isPrimitiveValue: function(object) argument
223 return InjectedScript.primitiveTypes[typeof object] && !this._isHTMLAllCollection(object);
230 _shouldPassByValue: function(object) argument
232 … return typeof object === "object" && InjectedScriptHost.subtype(object) === "internal#location";
242 wrapObject: function(object, groupName, forceValueType, generatePreview) argument
244 return this._wrapObject(object, groupName, forceValueType, generatePreview);
293 …_wrapObject: function(object, objectGroupName, forceValueType, generatePreview, columnNames, isTab… argument
296 …return new InjectedScript.RemoteObject(object, objectGroupName, doNotBind, forceValueType, generat…
312 _bind: function(object, objectGroupName) argument
314 var id = InjectedScriptHost.bind(object, objectGroupName || "");
326 …getProperties: function(object, objectGroupName, ownProperties, accessorPropertiesOnly, generatePr… argument
328 var subtype = this._subtype(object);
333 object = object.object;
337 … var iter = this._propertyDescriptors(object, ownProperties, accessorPropertiesOnly, undefined);
363 _objectPrototype: function(object) argument
365 if (InjectedScriptHost.subtype(object) === "proxy")
368 return Object.getPrototypeOf(object);
380 … _propertyDescriptors: function*(object, ownProperties, accessorPropertiesOnly, propertyNamesOnly) argument
406 …criptHost.formatAccessorsAsProperties(object, descriptor.get) && !doesAttributeHaveObservableSideE…
407 descriptor.value = object[property];
418 if (o === object)
435 if (o === object)
446 for (var o = object; this._isDefined(o); o = this._objectPrototype(o)) {
470 …skipGetOwnPropertyNames = InjectedScriptHost.subtype(object) === "typedarray" && object.length > 5…
474 for (var o = object; this._isDefined(o); o = this._objectPrototype(o)) {
477 if (skipGetOwnPropertyNames && o === object) {
539 _isDefined: function(object) argument
541 return !!object || this._isHTMLAllCollection(object);
548 _isHTMLAllCollection: function(object) argument
551 return (typeof object === "undefined") && !!InjectedScriptHost.subtype(object);
706 InjectedScript.RemoteObject = function(object, objectGroupName, doNotBind, forceValueType, generate… argument
708 this.type = typeof object;
709 if (this.type === "undefined" && injectedScript._isHTMLAllCollection(object))
712 if (injectedScript.isPrimitiveValue(object) || object === null || forceValueType) {
715 this.value = object;
718 if (object === null)
723 this.description = toStringDescription(object);
738 if (injectedScript._shouldPassByValue(object)) {
739 this.value = object;
740 this.subtype = injectedScript._subtype(object);
741 this.description = injectedScript._describeIncludingPrimitives(object);
745 object = /** @type {!Object} */ (object);
748 this.objectId = injectedScript._bind(object, objectGroupName);
749 var subtype = injectedScript._subtype(object);
752 var className = InjectedScriptHost.internalConstructorName(object);
755 this.description = injectedScript._describe(object);
759 …this.preview = this._generatePreview(InjectedScriptHost.proxyTargetValue(object), undefined, colum…
761 … this.preview = this._generatePreview(object, undefined, columnNames, isTable, skipEntriesPreview);
765 var customPreview = this._customPreview(object, objectGroupName, customObjectConfig);
779 _customPreview: function(object, objectGroupName, customObjectConfig) argument
795 function wrap(object, customObjectConfig) argument
797 …return injectedScript._wrapObject(object, objectGroupName, false, false, null, false, false, custo…
807 var formatted = formatters[i].header(object, customObjectConfig);
811 var hasBody = formatters[i].hasBody(object, customObjectConfig);
854 _generatePreview: function(object, firstLevelKeys, secondLevelKeys, isTable, skipEntriesPreview) argument
866 …var descriptors = injectedScript._propertyDescriptors(object, undefined, undefined, firstLevelKeys…
873 var rawInternalProperties = InjectedScriptHost.getInternalProperties(object) || [];