Home
last modified time | relevance | path

Searched refs:wrapLength (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/utils/
DIndentingPrintWriter.java33 private final int wrapLength; field in IndentingPrintWriter
54 public IndentingPrintWriter(Writer writer, String singleIndent, int wrapLength) { in IndentingPrintWriter() argument
57 this.wrapLength = wrapLength; in IndentingPrintWriter()
120 if (wrapLength > 0 && currentLength >= wrapLength - indentLength) { in write()