Home | History | Annotate | Download | only in src

Lines Matching refs:properties

165 // Different kind of properties.
613 * properties are requested
626 // Find all the named properties.
632 // Get names for named interceptor properties if any.
643 // Find all the indexed properties.
649 // Get names for indexed interceptor properties.
664 // Copy names for named properties.
671 // Copy names for indexed properties.
683 * Return the properties for this object as an array of PropertyMirror objects.
685 * properties are requested
686 * @param {number} limit Limit the number of properties returend to the
690 ObjectMirror.prototype.properties = function(kind, limit) {
692 var properties = new Array(names.length);
694 properties[i] = this.property(names[i]);
697 return properties;
720 var properties = this.properties();
722 // Look for property value in properties.
723 for (var i = 0; i < properties.length; i++) {
725 // Skip properties which are defined through assessors.
726 var property = properties[i];
1096 * Base mirror object for properties.
2155 * "properties":[<properties>]}
2159 // Add general object properties.
2174 // Add function specific properties.
2176 // Add function specific properties.
2193 // Add date specific properties.
2195 // Add date specific properties.
2199 // Add actual properties - named properties followed by indexed properties.
2217 content.properties = p;
2248 * array of properties.