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

1234567891011>>

/dalvik/dx/tests/087-ssa-local-vars/
H A DBlort.java13 System.out.println("foo");
20 System.out.println("string -> object");
22 System.out.println("object -> string");
24 System.out.println("object -> string (modified)");
30 System.out.println("caught ArrayStoreException (expected)");
/dalvik/tests/003-omnibus-opcodes/src/
H A DIntMath.java9 System.out.println("IntMath.shiftTest1");
38 System.out.println("IntMath.shiftTest2");
56 System.out.println("IntMath.unsignedShiftTest");
75 System.out.println("IntMath.convTest");
102 System.out.println("IntMath.charSubTest");
118 System.out.println("IntMath.intOperTest");
139 System.out.println("IntMath.intOperCheck");
164 System.out.println("IntMath.lit16Test");
194 System.out.println("IntMath.lit8Test");
211 // System.out
[all...]
/dalvik/tests/068-classloader/src/
H A DMain.java28 //System.out.println("SYSTEM: " + ClassLoader.getSystemClassLoader());
29 //System.out.println("ALTERN: " + loader);
45 System.out.println("base: " + DoubledImplement.class);
46 System.out.println("base2: " + DoubledImplement2.class);
87 System.out.println("Got expected access exception #1");
88 //System.out.println("+++ " + iae);
106 System.out.println("Got expected CNFE/IAE #2");
126 System.out.println("Got expected CNFE/IAE #3");
144 //System.out.println("+++ DoubledExtend is " + doubledExtendClass
161 System.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 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 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/file/
H A DProtoIdItem.java31 /** size of instances when written out to a file, in bytes */
129 public void writeTo(DexFile file, AnnotatedOutput out) { argument
134 if (out.annotates()) {
150 out.annotate(0, indexString() + ' ' + sb.toString());
151 out.annotate(4, " shorty_idx: " + Hex.u4(shortyIdx) +
153 out.annotate(4, " return_type_idx: " + Hex.u4(returnIdx) +
155 out.annotate(4, " parameters_off: " + Hex.u4(paramsOff));
158 out.writeInt(shortyIdx);
159 out.writeInt(returnIdx);
160 out
[all...]
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/dx/src/com/android/dx/dex/code/
H A DArrayData.java110 public void writeTo(AnnotatedOutput out) { argument
113 out.writeShort(Opcodes.FILL_ARRAY_DATA_PAYLOAD);
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 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);
/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.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.java77 * @param out {@code non-null;} where to write
79 public void writeHeaderPart(AnnotatedOutput out) { argument
85 if (out.annotates()) {
86 out.annotate(4, "string_ids_size: " + Hex.u4(sz));
87 out.annotate(4, "string_ids_off: " + Hex.u4(offset));
90 out.writeInt(sz);
91 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/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/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...]
/dalvik/dx/src/com/android/dx/io/
H A DAnnotation.java56 public void writeTo(DexBuffer.Section out) { argument
57 out.writeByte(visibility);
58 out.writeUleb128(typeIndex);
59 out.writeUleb128(names.length);
61 out.writeUleb128(names[i]);
62 values[i].writeTo(out);
/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/form/
H A DForm10x.java75 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
76 write(out, opcodeUnit(insn, 0));

Completed in 940 milliseconds

1234567891011>>