Searched refs:out (Results 201 - 225 of 393) sorted by relevance

1234567891011>>

/dalvik/dx/src/com/android/dx/dex/code/
H A DArrayData.java112 public void writeTo(AnnotatedOutput out) { argument
115 out.writeShort(Opcodes.FILL_ARRAY_DATA_PAYLOAD);
116 out.writeShort(elemWidth);
117 out.writeInt(initLength);
125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits());
132 out.writeShort((short) ((CstLiteral32) cst).getIntBits());
139 out.writeInt(((CstLiteral32) cst).getIntBits());
146 out.writeLong(((CstLiteral64) cst).getLongBits());
156 out.writeByte(0x00);
H A DSwitchData.java102 public void writeTo(AnnotatedOutput out) { argument
112 out.writeShort(Opcodes.PACKED_SWITCH_PAYLOAD);
113 out.writeShort(outSz);
114 out.writeInt(firstCase);
129 out.writeInt(relTarget);
132 out.writeShort(Opcodes.SPARSE_SWITCH_PAYLOAD);
133 out.writeShort(sz);
136 out.writeInt(cases.get(i));
141 out.writeInt(relTarget);
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));
/dalvik/dx/src/com/android/dx/dex/file/
H A DProtoIdItem.java126 public void writeTo(DexFile file, AnnotatedOutput out) { argument
131 if (out.annotates()) {
147 out.annotate(0, indexString() + ' ' + sb.toString());
148 out.annotate(4, " shorty_idx: " + Hex.u4(shortyIdx) +
150 out.annotate(4, " return_type_idx: " + Hex.u4(returnIdx) +
152 out.annotate(4, " parameters_off: " + Hex.u4(paramsOff));
155 out.writeInt(shortyIdx);
156 out.writeInt(returnIdx);
157 out.writeInt(paramsOff);
H A DMixedItemSection.java129 * @param out {@code non-null;} where to write
131 public void writeHeaderPart(AnnotatedOutput out) { argument
151 if (out.annotates()) {
152 out.annotate(4, name + "_size:" + spaces + Hex.u4(sz));
153 out.annotate(4, name + "_off: " + spaces + Hex.u4(offset));
156 out.writeInt(sz);
157 out.writeInt(offset);
229 * @param out {@code non-null;} where to write to
233 public void writeIndexAnnotation(AnnotatedOutput out, ItemType itemType, argument
251 out
330 writeTo0(AnnotatedOutput out) argument
[all...]
H A DStringIdsSection.java76 * @param out {@code non-null;} where to write
78 public void writeHeaderPart(AnnotatedOutput out) { argument
84 if (out.annotates()) {
85 out.annotate(4, "string_ids_size: " + Hex.u4(sz));
86 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
89 out.writeInt(sz);
90 out.writeInt(offset);
H A DTypeIdsSection.java79 * @param out {@code non-null;} where to write
81 public void writeHeaderPart(AnnotatedOutput out) { argument
93 if (out.annotates()) {
94 out.annotate(4, "type_ids_size: " + Hex.u4(sz));
95 out.annotate(4, "type_ids_off: " + Hex.u4(offset));
98 out.writeInt(sz);
99 out.writeInt(offset);
H A DUniformListItem.java187 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
190 if (out.annotates()) {
191 out.annotate(0, offsetString() + " " + typeName());
192 out.annotate(4, " size: " + Hex.u4(size));
195 out.writeInt(size);
198 i.writeTo(file, out);
/dalvik/tests/042-new-instance/src/
H A DMain.java38 System.out.println("LocalClass succeeded");
50 System.out.println("Got expected PackageAccess complaint");
62 System.out.println("Got expected InstantationError");
78 System.out.println("Cons LocalClass failed as expected");
89 System.out.println("Cons LocalClass2 succeeded");
102 System.out.println("Cons got expected PackageAccess complaint");
116 System.out.println("Cons got expected InstantationException");
131 System.out.println("Cons got expected PackageAccess2 complaint");
153 System.out.println("LocalClass3 succeeded");
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DMixedItemSection.java130 * @param out {@code non-null;} where to write
132 public void writeHeaderPart(AnnotatedOutput out) { argument
152 if (out.annotates()) {
153 out.annotate(4, name + "_size:" + spaces + Hex.u4(sz));
154 out.annotate(4, name + "_off: " + spaces + Hex.u4(offset));
157 out.writeInt(sz);
158 out.writeInt(offset);
230 * @param out {@code non-null;} where to write to
234 public void writeIndexAnnotation(AnnotatedOutput out, ItemType itemType, argument
252 out
331 writeTo0(AnnotatedOutput out) argument
[all...]
H A DStringIdsSection.java82 * @param out {@code non-null;} where to write
84 public void writeHeaderPart(AnnotatedOutput out) { argument
90 if (out.annotates()) {
91 out.annotate(4, "string_ids_size: " + Hex.u4(sz));
92 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
95 out.writeInt(sz);
96 out.writeInt(offset);
H A DTypeIdsSection.java76 * @param out {@code non-null;} where to write
78 public void writeHeaderPart(AnnotatedOutput out) { argument
88 if (out.annotates()) {
89 out.annotate(4, "type_ids_size: " + Hex.u4(sz));
90 out.annotate(4, "type_ids_off: " + Hex.u4(offset));
93 out.writeInt(sz);
94 out.writeInt(offset);
H A DUniformListItem.java189 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
192 if (out.annotates()) {
193 out.annotate(0, offsetString() + " " + typeName());
194 out.annotate(4, " size: " + Hex.u4(size));
197 out.writeInt(size);
200 i.writeTo(file, out);
/dalvik/tests/044-proxy/src/
H A DWrappedThrow.java38 System.out.println("WT init failed");
48 System.out.println("Got expected UTE");
57 System.out.println("Got expected IOE");
66 System.out.println("Got expected IOE");
78 System.out.println("Got expected UTE");
87 System.out.println("Got expected UTE");
96 System.out.println("Got expected exception");
105 System.out.println("Got expected exception");
118 System.out.println("Got expected exception");
160 System.out
[all...]
H A DClash.java37 System.out.println("Dupe threw expected exception");
46 System.out.println("Clash threw expected exception");
/dalvik/tests/083-jit-regressions/src/
H A DMain.java49 System.out.println("b2296099 passes");
75 System.out.println("b2302318 passes");
103 System.out.println("b2487514 passes");
106 System.out.println("b2487514 fails: catchCount is " + catchCount +
122 System.out.println("b5884080 passes");
125 System.out.println("b5884080 fails: vA is " + vA +
/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));
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm10x.java75 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
76 write(out, opcodeUnit(insn, 0));
/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 DForm30t.java77 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
80 write(out, opcodeUnit(insn, 0), offset);
/dalvik/tests/077-method-override/src/
H A DMain.java42 System.out.println("Got expected exception - ovws");
50 System.out.println("Got expected exception - oswv");
/dalvik/tests/080-oom-throw/src/
H A DMain.java69 System.out.println("NEW_ARRAY correctly threw OOME");
73 System.out.println("NEW_INSTANCE correctly threw OOME");
/dalvik/vm/mterp/
H A Drebuild.sh18 # Rebuild for all known targets. Necessary until the stuff in "out" gets
29 rm -f out/InterpAsm-portable.S

Completed in 330 milliseconds

1234567891011>>