Home | History | Annotate | Download | only in src

Lines Matching refs:properties

165 // Different kind of properties.
614 * properties are requested
627 // Find all the named properties.
633 // Get names for named interceptor properties if any.
644 // Find all the indexed properties.
650 // Get names for indexed interceptor properties.
665 // Copy names for named properties.
672 // Copy names for indexed properties.
684 * Return the properties for this object as an array of PropertyMirror objects.
686 * properties are requested
687 * @param {number} limit Limit the number of properties returend to the
691 ObjectMirror.prototype.properties = function(kind, limit) {
693 var properties = new Array(names.length);
695 properties[i] = this.property(names[i]);
698 return properties;
721 var properties = this.properties();
723 // Look for property value in properties.
724 for (var i = 0; i < properties.length; i++) {
726 // Skip properties which are defined through assessors.
727 var property = properties[i];
1097 * Base mirror object for properties.
2170 * "properties":[<properties>]}
2174 // Add general object properties.
2189 // Add function specific properties.
2191 // Add function specific properties.
2208 // Add date specific properties.
2210 // Add date specific properties.
2214 // Add actual properties - named properties followed by indexed properties.
2232 content.properties = p;
2263 * array of properties.