Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dinjected-script-source.js296 …_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
346 descriptor.get = this._wrapObject(descriptor.get, objectGroupName);
348 descriptor.set = this._wrapObject(descriptor.set, objectGroupName);
350 … descriptor.value = this._wrapObject(descriptor.value, objectGroupName, false, generatePreview);
356 descriptor.symbol = this._wrapObject(descriptor.symbol, objectGroupName);
509 _substituteObjectTagsInCustomPreview: function(objectGroupName, jsonMLObject) argument
[all …]
Dinjected-script.h86 String16 objectGroupName(const RemoteObjectId&) const;
152 const String16& objectGroupName() const { return m_objectGroupName; } in objectGroupName() function
Dv8-runtime-agent-impl.cc342 scope.injectedScript()->context()->contextId(), scope.objectGroupName(), in awaitPromise()
401 scope.tryCatch(), scope.objectGroupName(), false, in callFunctionOn()
427 scope.tryCatch(), scope.objectGroupName(), in callFunctionOn()
437 scope.injectedScript()->context()->contextId(), scope.objectGroupName(), in callFunctionOn()
463 object, scope.objectGroupName(), ownProperties.fromMaybe(false), in getProperties()
489 value, scope.objectGroupName(), false, false, &wrappedValue); in getProperties()
Dinjected-script.cc275 String16 InjectedScript::objectGroupName(const RemoteObjectId& objectId) const { in objectGroupName() function in v8_inspector::InjectedScript
518 m_objectGroupName = injectedScript->objectGroupName(*remoteId); in findInjectedScript()
Dv8-inspector-session-impl.cc286 if (objectGroup) *objectGroup = injectedScript->objectGroupName(*remoteId); in unwrapObject()