Searched refs:hexCols (Results 1 - 2 of 2) sorted by relevance
/external/dexmaker/src/dx/java/com/android/dx/util/ |
H A D | ByteArrayAnnotatedOutput.java | 63 private int hexCols; field in class:ByteArrayAnnotatedOutput 113 this.hexCols = 0; 405 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2); 427 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1; 428 if (hexCols < 6) { 429 hexCols = 6; 430 } else if (hexCols > 10) { 431 hexCols = 10; 436 this.hexCols [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
H A D | AnnotatedBytes.java | 81 private int hexCols = 8; field in class:AnnotatedBytes 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);
|
Completed in 150 milliseconds