HomeSort by relevance Sort by last modified time
    Searched refs:dumpWidth (Results 1 - 4 of 4) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 101 private int dumpWidth;
132 dumpWidth = 79;
207 * @param dumpWidth {@code >= 40;} the width
209 public void setDumpWidth(int dumpWidth) {
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/
DexFile.java 106 private int dumpWidth;
139 dumpWidth = 79;
228 * @param dumpWidth {@code >= 40;} the width
230 public void setDumpWidth(int dumpWidth) {
231 if (dumpWidth < 40) {
232 throw new IllegalArgumentException("dumpWidth < 40");
235 this.dumpWidth = dumpWidth;
560 out.enableAnnotations(dumpWidth, verbose);
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 316 if (args.dumpWidth != 0) {
317 outputDex.setDumpWidth(args.dumpWidth);
892 public int dumpWidth = 0;
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 101 milliseconds