Searched defs:annotationWidth (Results 1 - 3 of 3) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java57 private int annotationWidth; field in class:ByteArrayAnnotatedOutput
112 this.annotationWidth = 0;
407 return annotationWidth - leftWidth;
415 * @param annotationWidth {@code >= 40;} the desired maximum annotation width
418 public void enableAnnotations(int annotationWidth, boolean verbose) { argument
423 if (annotationWidth < 40) {
424 throw new IllegalArgumentException("annotationWidth < 40");
427 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1;
435 this.annotationWidth = annotationWidth;
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DByteArrayAnnotatedOutput.java65 private int annotationWidth; field in class:ByteArrayAnnotatedOutput
114 this.annotationWidth = 0;
441 return annotationWidth - leftWidth;
449 * @param annotationWidth &gt;= 40; the desired maximum annotation width
452 public void enableAnnotations(int annotationWidth, boolean verbose) { argument
457 if (annotationWidth < 40) {
458 throw new IllegalArgumentException("annotationWidth < 40");
461 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1;
469 this.annotationWidth = annotationWidth;
[all...]
H A DByteArrayOutput.java63 private int annotationWidth; field in class:ByteArrayOutput
109 this.annotationWidth = 0;
408 return annotationWidth - leftWidth;
416 * @param annotationWidth &gt;= 40; the desired maximum annotation width
419 public void enableAnnotations(int annotationWidth, boolean verbose) { argument
424 if (annotationWidth < 40) {
425 throw new IllegalArgumentException("annotationWidth < 40");
428 int hexCols = (((annotationWidth - 7) / 15) + 1) & ~1;
436 this.annotationWidth = annotationWidth;
[all...]

Completed in 86 milliseconds