Home
last modified time | relevance | path

Searched refs:objectGroupName (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/inspector/
Dinjected-script-source.js259 …_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
[all …]
Dinjected-script.h98 String16 objectGroupName(const RemoteObjectId&) const;
169 const String16& objectGroupName() const { return m_objectGroupName; } in objectGroupName() function
Dv8-runtime-agent-impl.cc316 m_session, scope.object(), scope.objectGroupName(), in awaitPromise()
351 : scope.objectGroupName(), in callFunctionOn()
399 object, scope.objectGroupName(), ownProperties.fromMaybe(false), in getProperties()
425 value, scope.objectGroupName(), false, false, &wrappedValue); in getProperties()
606 resultArray, objectGroup.fromMaybe(scope.objectGroupName()), false, false, in queryObjects()
Dinjected-script.cc483 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const { in objectGroupName() function in v8_inspector::InjectedScript
762 m_objectGroupName = injectedScript->objectGroupName(*remoteId); in findInjectedScript()
Dv8-inspector-session-impl.cc267 if (objectGroup) *objectGroup = injectedScript->objectGroupName(*remoteId); in unwrapObject()