Home | History | Annotate | Download | only in src

Lines Matching full:maxlength

613 StringMirror.prototype.getTruncatedValue = function(maxLength) {
614 if (maxLength != -1 && this.length() > maxLength) {
615 return this.value_.substring(0, maxLength) +