Home | History | Annotate | Download | only in src

Lines Matching full:properties

166 // Different kind of properties.
625 * properties are requested
638 // Find all the named properties.
644 // Get names for named interceptor properties if any.
655 // Find all the indexed properties.
661 // Get names for indexed interceptor properties.
676 // Copy names for named properties.
683 // Copy names for indexed properties.
695 * Return the properties for this object as an array of PropertyMirror objects.
697 * properties are requested
698 * @param {number} limit Limit the number of properties returned to the
702 ObjectMirror.prototype.properties = function(kind, limit) {
704 var properties = new Array(names.length);
706 properties[i] = this.property(names[i]);
709 return properties;
714 * Return the internal properties for this object as an array of
742 var properties = this.properties();
744 // Look for property value in properties.
745 for (var i = 0; i < properties.length; i++) {
747 // Skip properties which are defined through assessors.
748 var property = properties[i];
797 * Return the internal properties of the value, such as [[PrimitiveValue]] of
798 * scalar wrapper objects and properties of the bound function.
1166 * Base mirror object for properties.
1307 * Mirror object for internal properties. Internal property reflects properties
2396 * "properties":[<properties>],
2397 * "internalProperties":[<internal properties>]}
2401 // Add general object properties.
2416 // Add function specific properties.
2418 // Add function specific properties.
2444 // Add date specific properties.
2446 // Add date specific properties.
2450 // Add actual properties - named properties followed by indexed properties.
2468 content.properties = p;
2508 * array of properties.
2547 * building the array of properties.