Searched defs:width (Results 1 - 12 of 12) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DIndentingWriter.java24 * Writer that wraps another writer and passes width-limited and
33 /** {@code > 0;} the maximum output width */
34 private final int width; field in class:IndentingWriter
52 * @param width {@code >= 0;} the maximum output width (not including
56 public IndentingWriter(Writer out, int width, String prefix) { argument
63 if (width < 0) {
64 throw new IllegalArgumentException("width < 0");
71 this.width = (width !
85 IndentingWriter(Writer out, int width) argument
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DArgs.java47 /** max width for columnar output */
48 int width = 0; field in class:Args
H A DBaseDumper.java44 /** width of the output in columns */
45 private final int width; field in class:BaseDumper
85 this.width = (args.width <= 0) ? 79 : args.width;
93 int hexCols = (((width - 5) / 15) + 1) & ~1;
103 * Computes the total width, in register-units, of the parameters for
106 * @return width in register-units
231 * Gets the width of the first column of output. This is {@code 0}
234 * @return {@code >= 0;} the width o
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DIndentingWriter.java24 * Writer that wraps another writer and passes width-limited and
33 /** {@code > 0;} the maximum output width */
34 private final int width; field in class:IndentingWriter
52 * @param width {@code >= 0;} the maximum output width (not including
56 public IndentingWriter(Writer out, int width, String prefix) { argument
63 if (width < 0) {
64 throw new IllegalArgumentException("width < 0");
71 this.width = (width !
85 IndentingWriter(Writer out, int width) argument
[all...]
/dalvik/libdex/
H A DInstrUtils.cpp29 * Table that maps each opcode to the full width of instructions that
31 * well as the "breakpoint" opcode have a width of zero.
656 * Return the width of the specified instruction, or 0 if not defined. Also
662 size_t width; local
665 width = 4 + insns[1] * 2;
667 width = 2 + insns[1] * 4;
671 // The plus 1 is to round up for odd size and width.
672 width = 4 + (elemWidth * len + 1) / 2;
674 width = dexGetWidthFromOpcode(dexOpcodeFromCodeUnit(insns[0]));
677 return width;
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDalvInsn.java309 * @param width {@code >= 0;} the width of the output or {@code 0} for
310 * unlimited width
316 public final String listingString(String prefix, int width, argument
326 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
H A DInsnFormat.java210 * @param width the width of the constant, in bits (used for displaying
215 int width) {
228 switch (width) {
214 literalBitsComment(CstLiteralBits value, int width) argument
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvInsn.java338 * @param width {@code >= 0;} the width of the output or {@code 0} for
339 * unlimited width
345 public final String listingString(String prefix, int width, argument
355 int w2 = (width == 0) ? insnPerSe.length() : (width - w1);
H A DInsnFormat.java268 * @param width the width of the constant, in bits (used for displaying
273 int width) {
286 switch (width) {
272 literalBitsComment(CstLiteralBits value, int width) argument
/dalvik/dx/src/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java377 * @param category {@code > 0;} width to reserve
388 * @param width {@code > 0;} number of rop registers in range.
391 private boolean rangeContainsReserved(int ropRangeStart, int width) { argument
392 for (int i = ropRangeStart; i < (ropRangeStart + width); i++) {
449 * @param width {@code > 0;} the width, in registers, required.
453 private int findNextUnreservedRopReg(int startReg, int width, Alignment alignment) { argument
459 while (i < width && !reservedRopRegs.get(reg + i)) {
463 if (i == width) {
686 * @param category width tha
[all...]
/dalvik/dexdump/
H A DDexDump.cpp716 u4 width; local
729 width = 4;
733 width = 8;
738 width = 4;
742 width = 4;
767 width, index);
772 getClassDescriptor(pDexFile, index), width, index);
774 outSize = snprintf(buf, bufSize, "<type?> // type@%0*x", width, index);
780 dexStringById(pDexFile, index), width, index);
783 width, inde
1098 int width = get2LE((const u1*)(insns+1)); local
[all...]
/dalvik/tools/dmtracedump/
H A DTraceDump.c82 "table.sortable th { border-width: 0px 1px 1px 1px; background-color: #ccc;}\n"
1867 * of the string "buf" is at least "width" characters wide. If width is
1870 void printHtmlField(char *buf, int width) argument
1875 if (width < 0) {
1876 width = -width;
1880 int numSpaces = width - len;

Completed in 150 milliseconds