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

  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 57 private final int hexCols;
93 int hexCols = (((width - 5) / 15) + 1) & ~1;
94 if (hexCols < 6) {
95 hexCols = 6;
96 } else if (hexCols > 10) {
97 hexCols = 10;
99 this.hexCols = hexCols;
238 return 5 + (hexCols * 2) + (hexCols / 2)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 81 private int hexCols = 8;
275 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
319 String left = Hex.dump(data, rangeStart, rangeEnd - rangeStart, rangeStart, hexCols, 6);
326 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 66 private int hexCols;
116 this.hexCols = 0;
408 int leftWidth = 8 + (hexCols * 2) + (hexCols / 2);
430 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1;
431 if (hexCols < 6) {
432 hexCols = 6;
433 } else if (hexCols > 10) {
434 hexCols = 10;
439 this.hexCols = hexCols
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 63 private int hexCols;
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 = hexCols
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker/1.0/
dexmaker-1.0.jar 

Completed in 109 milliseconds