Home | History | Annotate | Download | only in src

Lines Matching full:maxlength

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