Searched refs:hexCols (Results 1 – 3 of 3) sorted by relevance
/dalvik/dx/src/com/android/dx/command/dump/ |
D | BaseDumper.java | 58 private final int hexCols; field in BaseDumper 99 int hexCols = (((width - 5) / 15) + 1) & ~1; in BaseDumper() local 100 if (hexCols < 6) { in BaseDumper() 101 hexCols = 6; in BaseDumper() 102 } else if (hexCols > 10) { in BaseDumper() 103 hexCols = 10; in BaseDumper() 105 this.hexCols = hexCols; in BaseDumper() 228 return 5 + (hexCols * 2) + (hexCols / 2); in getWidth1() 252 return Hex.dump(bytes, offset, len, offset, hexCols, 4); in hexDump()
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
D | ByteArrayAnnotatedOutput.java | 63 private int hexCols; field in ByteArrayAnnotatedOutput 104 this.hexCols = 0; in ByteArrayAnnotatedOutput() 412 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2); in getAnnotationWidth() 434 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1; in enableAnnotations() local 435 if (hexCols < 6) { in enableAnnotations() 436 hexCols = 6; in enableAnnotations() 437 } else if (hexCols > 10) { in enableAnnotations() 438 hexCols = 10; in enableAnnotations() 443 this.hexCols = hexCols; in enableAnnotations() 508 left.write(Hex.dump(data, start, end - start, start, hexCols, 6)); in writeAnnotationsTo() [all …]
|
/dalvik/dx/src/com/android/dx/util/ |
D | ByteArrayAnnotatedOutput.java | 67 private int hexCols; field in ByteArrayAnnotatedOutput 117 this.hexCols = 0; in ByteArrayAnnotatedOutput() 428 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2); in getAnnotationWidth() 450 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1; in enableAnnotations() local 451 if (hexCols < 6) { in enableAnnotations() 452 hexCols = 6; in enableAnnotations() 453 } else if (hexCols > 10) { in enableAnnotations() 454 hexCols = 10; in enableAnnotations() 459 this.hexCols = hexCols; in enableAnnotations() 524 left.write(Hex.dump(data, start, end - start, start, hexCols, 6)); in writeAnnotationsTo() [all …]
|