Searched refs:leftWidth (Results 1 - 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dx/util/
H A DTwoColumnOutput.java35 private final int leftWidth; field in class:TwoColumnOutput
84 * @param leftWidth {@code > 0;} width of the left column, in characters
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
94 if (leftWidth < 1) {
95 throw new IllegalArgumentException("leftWidth < 1");
110 this.leftWidth = leftWidth;
113 this.leftColumn = new IndentingWriter(leftWriter, leftWidth);
122 * @param leftWidth {@code >= 1;} width of the left column, in characters
126 public TwoColumnOutput(OutputStream out, int leftWidth, in argument
[all...]
H A DByteArrayAnnotatedOutput.java412 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
414 return annotationWidth - leftWidth;

Completed in 101 milliseconds