Home | History | Annotate | Download | only in inspector

Lines Matching defs:maxLength

961             var maxLength = 100;
963 if (type === "string" && value.length > maxLength)
964 value = this._abbreviateString(value, maxLength, true);
982 description = this._abbreviateString(/** @type {string} */ (injectedScript._describe(value)), maxLength, subtype === "regexp");
1052 * @param {number} maxLength
1056 _abbreviateString: function(string, maxLength, middle)
1058 if (string.length <= maxLength)
1061 var leftHalf = maxLength >> 1;
1062 var rightHalf = maxLength - leftHalf - 1;
1065 return string.substr(0, maxLength) + "\u2026";