HomeSort by relevance Sort by last modified time
    Searched defs:hexCols (Results 1 - 3 of 3) sorted by null

  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 59 private final int hexCols;
95 int hexCols = (((width - 5) / 15) + 1) & ~1;
96 if (hexCols < 6) {
97 hexCols = 6;
98 } else if (hexCols > 10) {
99 hexCols = 10;
101 this.hexCols = hexCols;
240 return 5 + (hexCols * 2) + (hexCols / 2)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 63 private int hexCols;
104 this.hexCols = 0;
412 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
434 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1;
435 if (hexCols < 6) {
436 hexCols = 6;
437 } else if (hexCols > 10) {
438 hexCols = 10;
443 this.hexCols = hexCols
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 463 milliseconds