Searched refs:internalProperties (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | ObjectPropertiesSection.js | 84 function callback(properties, internalProperties) argument 88 this.updateProperties(properties, internalProperties); 94 …updateProperties: function(properties, internalProperties, rootTreeElementConstructor, rootPropert… argument 110 properties, internalProperties, 467 function callback(properties, internalProperties) argument 472 if (!internalProperties) 473 internalProperties = []; 475 …ector.ObjectPropertyTreeElement.populateWithProperties(treeElement, properties, internalProperties, 492 …Element.populateWithProperties = function(treeElement, properties, internalProperties, treeElement… argument 527 if (internalProperties) { [all …]
|
D | RemoteObject.js | 222 function remoteObjectBinder(error, properties, internalProperties) argument 234 if (internalProperties) { 236 for (var i = 0; i < internalProperties.length; i++) { 237 var property = internalProperties[i]; 452 function allAccessorPropertiesCallback(properties, internalProperties) argument 462 function ownPropertiesCallback(properties, internalProperties) argument 465 savedInternalProperties = internalProperties; 531 function wrappedCallback(properties, internalProperties) argument 535 callback(properties, internalProperties);
|
/external/chromium_org/v8/test/mjsunit/ |
D | mirror-object.js | 78 var internalProperties = mirror.internalProperties(); 79 for (var i = 0; i < internalProperties.length; i++) { 80 assertTrue(internalProperties[i] instanceof debug.Mirror, 'Unexpected mirror hierarchy'); 81 …assertTrue(internalProperties[i] instanceof debug.InternalPropertyMirror, 'Unexpected mirror hiera… 82 assertEquals('internalProperty', internalProperties[i].type(), 'Unexpected mirror type'); 244 var ip = mirror.internalProperties(); 252 ip = mirror.internalProperties();
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorRuntimeAgent.cpp | 113 … RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) in getProperties() argument 128 injectedScript.getInternalProperties(errorString, objectId, &internalProperties); in getProperties()
|
D | InspectorRuntimeAgent.h | 77 …RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties);
|
D | InjectedScriptSource.js | 355 var internalProperties = InjectedScriptHost.getInternalProperties(object); 356 if (internalProperties) { 357 for (var i = 0; i < internalProperties.length; i++) { 358 var property = internalProperties[i];
|
/external/chromium_org/v8/src/ |
D | mirror-debugger.js | 718 ObjectMirror.prototype.internalProperties = function() { method in ObjectMirror 2470 var internalProperties = mirror.internalProperties(); 2471 if (internalProperties.length > 0) { 2473 for (var i = 0; i < internalProperties.length; i++) { 2474 ip.push(this.serializeInternalProperty_(internalProperties[i])); 2476 content.internalProperties = ip;
|