Lines Matching refs:properties
165 // Different kind of properties.
616 * properties are requested
629 // Find all the named properties.
635 // Get names for named interceptor properties if any.
646 // Find all the indexed properties.
652 // Get names for indexed interceptor properties.
667 // Copy names for named properties.
674 // Copy names for indexed properties.
686 * Return the properties for this object as an array of PropertyMirror objects.
688 * properties are requested
689 * @param {number} limit Limit the number of properties returend to the
693 ObjectMirror.prototype.properties = function(kind, limit) {
695 var properties = new Array(names.length);
697 properties[i] = this.property(names[i]);
700 return properties;
723 var properties = this.properties();
725 // Look for property value in properties.
726 for (var i = 0; i < properties.length; i++) {
728 // Skip properties which are defined through assessors.
729 var property = properties[i];
1100 * Base mirror object for properties.
2226 * "properties":[<properties>]}
2230 // Add general object properties.
2245 // Add function specific properties.
2247 // Add function specific properties.
2264 // Add date specific properties.
2266 // Add date specific properties.
2270 // Add actual properties - named properties followed by indexed properties.
2288 content.properties = p;
2319 * array of properties.