Home
last modified time | relevance | path

Searched refs:accessorPropertiesOnly (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DRemoteObject.js83 getAllProperties: function(accessorPropertiesOnly, callback) argument
289 getAllProperties: function(accessorPropertiesOnly, callback) argument
291 this.doGetProperties(false, accessorPropertiesOnly, callback);
323 doGetProperties: function(ownProperties, accessorPropertiesOnly, callback) argument
372 …this._runtimeAgent.getProperties(this._objectId, ownProperties, accessorPropertiesOnly, remoteObje…
683 doGetProperties: function(ownProperties, accessorPropertiesOnly, callback) argument
685 if (accessorPropertiesOnly) {
709 …teObjectImpl.prototype.doGetProperties.call(this, ownProperties, accessorPropertiesOnly, wrappedCa… argument
927 getAllProperties: function(accessorPropertiesOnly, callback) argument
929 if (accessorPropertiesOnly)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorRuntimeAgent.cpp120 …, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<Ty… in getProperties() argument
131 bool accessorPropertiesOnlyValue = accessorPropertiesOnly && *accessorPropertiesOnly; in getProperties()
DInjectedScriptSource.js392 getProperties: function(objectId, ownProperties, accessorPropertiesOnly) argument
401 var descriptors = this._propertyDescriptors(object, ownProperties, accessorPropertiesOnly);
497 _propertyDescriptors: function(object, ownProperties, accessorPropertiesOnly) argument
521 if (accessorPropertiesOnly && !("get" in descriptor || "set" in descriptor))
525 if (accessorPropertiesOnly)
538 if (accessorPropertiesOnly)
562 if (object.__proto__ && !accessorPropertiesOnly)
DInspectorRuntimeAgent.h78 …, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<Ty…
DInjectedScript.h87 …s(ErrorString*, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Ty…
DInjectedScript.cpp180 …g* errorString, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Ar… in getProperties() argument
185 function.appendArgument(accessorPropertiesOnly); in getProperties()