Searched defs:maxLength (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstUtf8.java313 * @param maxLength {@code >= 5;} the maximum length of the string to return
316 public String toQuoted(int maxLength) { argument
321 if (length <= (maxLength - 2)) {
324 string = string.substring(0, maxLength - 5);
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstString.java313 * @param maxLength {@code >= 5;} the maximum length of the string to return
316 public String toQuoted(int maxLength) { argument
321 if (length <= (maxLength - 2)) {
324 string = string.substring(0, maxLength - 5);

Completed in 104 milliseconds