Home
last modified time | relevance | path

Searched refs:internalProperties (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DObjectPropertiesSection.js84 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 …]
DRemoteObject.js222 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/
Dmirror-object.js78 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/
DInspectorRuntimeAgent.cpp113 … RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) in getProperties() argument
128 injectedScript.getInternalProperties(errorString, objectId, &internalProperties); in getProperties()
DInspectorRuntimeAgent.h77 …RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties);
DInjectedScriptSource.js355 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/
Dmirror-debugger.js718 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;