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

  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 58 private final int hexCols;
99 int hexCols = (((width - 5) / 15) + 1) & ~1;
100 if (hexCols < 6) {
101 hexCols = 6;
102 } else if (hexCols > 10) {
103 hexCols = 10;
105 this.hexCols = hexCols;
228 return 5 + (hexCols * 2) + (hexCols / 2)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 81 private int hexCols = 8;
274 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
318 String left = Hex.dump(data, rangeStart, rangeEnd - rangeStart, rangeStart, hexCols, 6);
325 String left = Hex.dump(data, lastKey, data.length - lastKey, lastKey, hexCols, 6);
  /dalvik/dexgen/src/com/android/dexgen/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...]
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 67 private int hexCols;
117 this.hexCols = 0;
428 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
450 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1;
451 if (hexCols < 6) {
452 hexCols = 6;
453 } else if (hexCols > 10) {
454 hexCols = 10;
459 this.hexCols = hexCols
    [all...]
  /external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar 

Completed in 69 milliseconds