Searched refs:dumpWidth (Results 1 - 3 of 3) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDexFile.java101 private int dumpWidth; field in class:DexFile
132 dumpWidth = 79;
207 * @param dumpWidth {@code >= 40;} the width
209 public void setDumpWidth(int dumpWidth) { argument
210 if (dumpWidth < 40) {
211 throw new IllegalArgumentException("dumpWidth < 40");
214 this.dumpWidth = dumpWidth;
541 out.enableAnnotations(dumpWidth, verbose);
/dalvik/dx/src/com/android/dx/dex/file/
H A DDexFile.java104 private int dumpWidth; field in class:DexFile
137 dumpWidth = 79;
226 * @param dumpWidth {@code >= 40;} the width
228 public void setDumpWidth(int dumpWidth) { argument
229 if (dumpWidth < 40) {
230 throw new IllegalArgumentException("dumpWidth < 40");
233 this.dumpWidth = dumpWidth;
558 out.enableAnnotations(dumpWidth, verbose);
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java548 if (args.dumpWidth != 0) {
549 outputDex.setDumpWidth(args.dumpWidth);
1166 public int dumpWidth = 0; field in class:Main.Arguments
1414 dumpWidth = Integer.parseInt(parser.getLastValue());

Completed in 8 milliseconds