Home | History | Annotate | Download | only in src

Lines Matching refs:Limit

614  * @param {number} limit Limit the number of names returend to the specified
618 ObjectMirror.prototype.propertyNames = function(kind, limit) {
619 // Find kind and limit and allocate array for the result
659 limit = Math.min(limit || total, total);
661 var names = new Array(limit);
666 for (var i = 0; index < limit && i < propertyNames.length; i++) {
673 for (var i = 0; index < limit && i < elementNames.length; i++) {
686 * @param {number} limit Limit the number of properties returend to the
690 ObjectMirror.prototype.properties = function(kind, limit) {
691 var names = this.propertyNames(kind, limit);
949 UnresolvedFunctionMirror.prototype.propertyNames = function(kind, limit) {