Home | History | Annotate | Download | only in src

Lines Matching refs:Limit

615  * @param {number} limit Limit the number of names returend to the specified
619 ObjectMirror.prototype.propertyNames = function(kind, limit) {
620 // Find kind and limit and allocate array for the result
660 limit = Math.min(limit || total, total);
662 var names = new Array(limit);
667 for (var i = 0; index < limit && i < propertyNames.length; i++) {
674 for (var i = 0; index < limit && i < elementNames.length; i++) {
687 * @param {number} limit Limit the number of properties returend to the
691 ObjectMirror.prototype.properties = function(kind, limit) {
692 var names = this.propertyNames(kind, limit);
950 UnresolvedFunctionMirror.prototype.propertyNames = function(kind, limit) {