Searched defs:out (Results 1 - 25 of 193) sorted by relevance

12345678

/dalvik/dx/src/com/android/dx/command/
H A DDxConsole.java23 * By default the PrintStream objects link to {@code System.out} and
29 * Standard output stream. Links to {@code System.out} by default.
31 public static PrintStream out = System.out; field in class:DxConsole
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DFixedSizeInsn.java57 public final void writeTo(AnnotatedOutput out) { argument
58 getOpcode().getFormat().writeTo(out, this);
H A DOddSpacer.java48 public void writeTo(AnnotatedOutput out) { argument
50 out.writeShort(InsnFormat.codeUnit(DalvOps.NOP, 0));
H A DZeroSizeInsn.java47 public final void writeTo(AnnotatedOutput out) { argument
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DAnnotationSetRefItem.java71 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
74 if (out.annotates()) {
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
78 out.writeInt(annotationsOff);
H A DHeaderItem.java66 public void writeTo(DexFile file, AnnotatedOutput out) { argument
74 if (out.annotates()) {
75 out.annotate(8, "magic: " + new CstUtf8(MAGIC).toQuoted());
76 out.annotate(4, "checksum");
77 out.annotate(20, "signature");
78 out.annotate(4, "file_size: " +
80 out.annotate(4, "header_size: " + Hex.u4(HEADER_SIZE));
81 out.annotate(4, "endian_tag: " + Hex.u4(ENDIAN_TAG));
82 out.annotate(4, "link_size: 0");
83 out
[all...]
H A DItem.java77 * @param out {@code non-null;} where to write to
79 public abstract void writeTo(DexFile file, AnnotatedOutput out); argument
H A DMemberIdItem.java29 /** size of instances when written out to a file, in bytes */
63 public final void writeTo(DexFile file, AnnotatedOutput out) { argument
71 if (out.annotates()) {
72 out.annotate(0, indexString() + ' ' + cst.toHuman());
73 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
74 out.annotate(2, String.format(" %-10s %s", getTypoidName() + ':',
76 out.annotate(4, " name_idx: " + Hex.u4(nameIdx));
79 out.writeShort(classIdx);
80 out.writeShort(typoidIdx);
81 out
[all...]
H A DStringDataItem.java71 public void writeTo0(DexFile file, AnnotatedOutput out) { argument
75 if (out.annotates()) {
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
81 out.writeUnsignedLeb128(utf16Size);
82 out.write(bytes);
83 out.writeByte(0);
H A DTypeIdItem.java28 /** size of instances when written out to a file, in bytes */
60 public void writeTo(DexFile file, AnnotatedOutput out) { argument
65 if (out.annotates()) {
66 out.annotate(0, indexString() + ' ' + descriptor.toHuman());
67 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
70 out.writeInt(idx);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DExceptionWithContext.java93 public void printStackTrace(PrintStream out) { argument
94 super.printStackTrace(out);
95 out.println(context);
100 public void printStackTrace(PrintWriter out) { argument
101 super.printStackTrace(out);
102 out.println(context);
133 * @param out {@code non-null;} where to print to
135 public void printContext(PrintStream out) { argument
136 out.println(getMessage());
137 out
145 printContext(PrintWriter out) argument
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DClassDumper.java34 * @param out {@code non-null;} where to dump to
40 public static void dump(byte[] bytes, PrintStream out, argument
43 new ClassDumper(bytes, out, filePath, args);
51 private ClassDumper(byte[] bytes, PrintStream out, argument
53 super(bytes, out, filePath, args);
H A DSsaDumper.java56 * @param out {@code non-null;} where to dump to
61 public static void dump(byte[] bytes, PrintStream out, argument
63 SsaDumper sd = new SsaDumper(bytes, out, filePath, args);
71 * @param out {@code non-null;} where to dump to
76 private SsaDumper(byte[] bytes, PrintStream out, String filePath, argument
78 super(bytes, out, filePath, true, args);
178 sb.append(" live out:" + block.getLiveOutRegs());
/dalvik/dx/src/com/android/dx/dex/code/
H A DFixedSizeInsn.java58 public final void writeTo(AnnotatedOutput out) { argument
59 getOpcode().getFormat().writeTo(out, this);
H A DOddSpacer.java49 public void writeTo(AnnotatedOutput out) { argument
51 out.writeShort(InsnFormat.codeUnit(Opcodes.NOP, 0));
H A DZeroSizeInsn.java47 public final void writeTo(AnnotatedOutput out) { argument
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm10x.java69 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
70 write(out, opcodeUnit(insn, 0));
H A DForm3rc.java98 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
104 write(out, opcodeUnit(insn, count), (short) cpi, (short) firstReg);
H A DSpecialFormat.java69 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
/dalvik/dx/src/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java71 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
74 if (out.annotates()) {
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
78 out.writeInt(annotationsOff);
H A DHeaderItem.java56 public void writeTo(DexFile file, AnnotatedOutput out) { argument
66 if (out.annotates()) {
67 out.annotate(8, "magic: " + new CstString(magic).toQuoted());
68 out.annotate(4, "checksum");
69 out.annotate(20, "signature");
70 out.annotate(4, "file_size: " +
72 out.annotate(4, "header_size: " + Hex.u4(SizeOf.HEADER_ITEM));
73 out.annotate(4, "endian_tag: " + Hex.u4(DexFormat.ENDIAN_TAG));
74 out.annotate(4, "link_size: 0");
75 out
[all...]
H A DItem.java77 * @param out {@code non-null;} where to write to
79 public abstract void writeTo(DexFile file, AnnotatedOutput out); argument
H A DMemberIdItem.java61 public final void writeTo(DexFile file, AnnotatedOutput out) { argument
69 if (out.annotates()) {
70 out.annotate(0, indexString() + ' ' + cst.toHuman());
71 out.annotate(2, " class_idx: " + Hex.u2(classIdx));
72 out.annotate(2, String.format(" %-10s %s", getTypoidName() + ':',
74 out.annotate(4, " name_idx: " + Hex.u4(nameIdx));
77 out.writeShort(classIdx);
78 out.writeShort(typoidIdx);
79 out.writeInt(nameIdx);
84 * this item, in order that it may be written out
[all...]
H A DStringDataItem.java71 public void writeTo0(DexFile file, AnnotatedOutput out) { argument
75 if (out.annotates()) {
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
81 out.writeUleb128(utf16Size);
82 out.write(bytes);
83 out.writeByte(0);
H A DTypeIdItem.java58 public void writeTo(DexFile file, AnnotatedOutput out) { argument
63 if (out.annotates()) {
64 out.annotate(0, indexString() + ' ' + descriptor.toHuman());
65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
68 out.writeInt(idx);

Completed in 4217 milliseconds

12345678