Searched refs:out (Results 1 - 25 of 221) sorted by path

123456789

/dalvik/dexdump/
H A DDexDump.cpp355 * Copy character data from "data" to "out", converting non-ASCII values
361 static void asciify(char* out, const unsigned char* data, size_t len) argument
368 *out++ = '\\';
369 *out++ = '0';
372 *out++ = '\\';
373 *out++ = 'n';
376 *out++ = '.';
380 *out++ = '?';
382 *out++ = *data;
386 *out
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DArrayData.java110 public void writeTo(AnnotatedOutput out) { argument
113 out.writeShort(0x300 | DalvOps.NOP);
114 out.writeShort(elemWidth);
115 out.writeInt(initLength);
123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
130 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
137 out.writeInt(((CstLiteral32) cst).getIntBits());
144 out.writeLong(((CstLiteral64) cst).getLongBits());
154 out.writeByte(0x00);
H A DDalvInsn.java367 * @param out {@code non-null;} where to write to
369 public abstract void writeTo(AnnotatedOutput out); argument
H A DDalvInsnList.java122 * @param out {@code non-null;} where to write to
124 public void writeTo(AnnotatedOutput out) { argument
125 int startCursor = out.getCursor();
128 if (out.annotates()) {
129 boolean verbose = out.isVerbose();
137 s = insn.listingString(" ", out.getAnnotationWidth(),
144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
154 insn.writeTo(out);
162 int written = (out
224 debugPrint(Writer out, String prefix, boolean verbose) argument
258 debugPrint(OutputStream out, String prefix, boolean verbose) argument
[all...]
H A DFixedSizeInsn.java57 public final void writeTo(AnnotatedOutput out) { argument
58 getOpcode().getFormat().writeTo(out, this);
H A DHighRegisterPrefix.java70 public void writeTo(AnnotatedOutput out) { argument
74 insn.writeTo(out);
H A DInsnFormat.java155 * @param out {@code non-null;} the output destination to write to
158 public abstract void writeTo(AnnotatedOutput out, DalvInsn insn); argument
406 throw new IllegalArgumentException("arg out of range 0..255");
412 throw new IllegalArgumentException("opcode out of range 0..255");
427 throw new IllegalArgumentException("low out of range 0..255");
431 throw new IllegalArgumentException("high out of range 0..255");
448 throw new IllegalArgumentException("n0 out of range 0..15");
452 throw new IllegalArgumentException("n1 out of range 0..15");
456 throw new IllegalArgumentException("n2 out of range 0..15");
460 throw new IllegalArgumentException("n3 out o
491 write(AnnotatedOutput out, short c0) argument
502 write(AnnotatedOutput out, short c0, short c1) argument
515 write(AnnotatedOutput out, short c0, short c1, short c2) argument
531 write(AnnotatedOutput out, short c0, short c1, short c2, short c3) argument
549 write(AnnotatedOutput out, short c0, short c1, short c2, short c3, short c4) argument
569 write(AnnotatedOutput out, short c0, short c1, short c2, short c3, short c4, short c5) argument
[all...]
H A DLocalList.java76 * @param out {@code non-null;} where to dump
79 public void debugPrint(PrintStream out, String prefix) { argument
83 out.print(prefix);
84 out.println(get(i));
331 * variable pseudoinstructions, splitting out LocalSnapshots
619 * out to be superfluous, as we are starting
H A DOddSpacer.java48 public void writeTo(AnnotatedOutput out) { argument
50 out.writeShort(InsnFormat.codeUnit(DalvOps.NOP, 0));
H A DSwitchData.java101 public void writeTo(AnnotatedOutput out) { argument
111 out.writeShort(0x100 | DalvOps.NOP);
112 out.writeShort(outSz);
113 out.writeInt(firstCase);
128 out.writeInt(relTarget);
131 out.writeShort(0x200 | DalvOps.NOP);
132 out.writeShort(sz);
135 out.writeInt(cases.get(i));
140 out.writeInt(relTarget);
H A DZeroSizeInsn.java47 public final void writeTo(AnnotatedOutput out) { argument
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm10t.java87 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
90 write(out, opcodeUnit(insn, (offset & 0xff)));
H A DForm10x.java75 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
76 write(out, opcodeUnit(insn, 0));
H A DForm11n.java96 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
101 write(out,
H A DForm11x.java78 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
80 write(out, opcodeUnit(insn, regs.get(0).getReg()));
H A DForm12x.java118 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
128 write(out, opcodeUnit(insn,
H A DForm20t.java87 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
90 write(out, opcodeUnit(insn, 0), (short) offset);
H A DForm21c.java125 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
129 write(out,
H A DForm21h.java106 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
118 write(out, opcodeUnit(insn, regs.get(0).getReg()), bits);
H A DForm21s.java95 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
100 write(out,
H A DForm21t.java92 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
96 write(out,
H A DForm22b.java97 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
102 write(out,
H A DForm22c.java100 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
104 write(out,
H A DForm22s.java97 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
102 write(out,
H A DForm22t.java94 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
98 write(out,

Completed in 109 milliseconds

123456789