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

/dalvik/dexgen/src/com/android/dexgen/util/
H A DTwoColumnOutput.java85 * @param rightWidth {@code > 0;} width of the right column, in characters
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
98 if (rightWidth < 1) {
99 throw new IllegalArgumentException("rightWidth < 1");
115 new IndentingWriter(rightWriter, rightWidth, spacer);
123 * @param rightWidth {@code >= 1;} width of the right column, in characters
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, argument
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer);
/dalvik/dx/src/com/android/dx/util/
H A DTwoColumnOutput.java85 * @param rightWidth {@code > 0;} width of the right column, in characters
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
98 if (rightWidth < 1) {
99 throw new IllegalArgumentException("rightWidth < 1");
115 new IndentingWriter(rightWriter, rightWidth, spacer);
123 * @param rightWidth {@code >= 1;} width of the right column, in characters
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, argument
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer);

Completed in 4 milliseconds