Searched refs:out (Results 76 - 100 of 393) sorted by relevance

1234567891011>>

/dalvik/tests/026-access/src/
H A DMain.java7 System.out.println("access test");
/dalvik/tests/032-concrete-sub/src/
H A DConcreteSub.java24 System.out.println("calling abs.doStuff()");
34 System.out.println("Got expected exception from abs.doStuff().");
43 System.out.println("class modifiers=" + absClass.getModifiers());
51 System.out.println("meth modifiers=" + meth.getModifiers());
H A DMain.java31 System.out.println("Got expected failure");
33 System.out.println("Got expected failure");
/dalvik/tests/065-mismatched-implements/src/
H A DMain.java26 System.out.println("Got expected ICCE");
/dalvik/tests/066-mismatched-super/src/
H A DMain.java26 System.out.println("Got expected ICCE");
/dalvik/tests/068-classloader/src/
H A DDoubledExtend.java8 //System.out.println("Ctor: doubled extend, type 1");
13 System.out.println("getExtended 1");
/dalvik/tests/078-polymorphic-virtual/src/
H A DMain.java32 System.out.println(e);
36 System.out.println(derived1.getValue());
37 System.out.println(derived2.getValue());
38 System.out.println(derived3.getValue());
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DCodeItem.java161 * @param out {@code non-null;} where to dump
165 public void debugPrint(PrintWriter out, String prefix, boolean verbose) { argument
166 out.println(ref.toHuman() + ":");
169 out.println("regs: " + Hex.u2(getRegistersSize()) +
173 insns.debugPrint(out, prefix, verbose);
178 out.print(prefix);
179 out.println("catches");
180 catches.debugPrint(out, prefix2);
184 out.print(prefix);
185 out
233 writeTo0(DexFile file, AnnotatedOutput out) argument
297 writeCodes(DexFile file, AnnotatedOutput out) argument
[all...]
H A DSection.java144 * @param out {@code non-null;} where to write to
146 public final void writeTo(AnnotatedOutput out) { argument
148 align(out);
150 int cursor = out.getCursor();
160 if (out.annotates()) {
162 out.annotate(0, "\n" + name + ":");
164 out.annotate(0, "\n");
168 writeTo0(out);
261 * @param out {@code non-null;} the output to align
263 protected final void align(AnnotatedOutput out) { argument
277 writeTo0(AnnotatedOutput out) argument
[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);
/dalvik/dx/src/com/android/dx/dex/file/
H A DCodeItem.java152 * @param out {@code non-null;} where to dump
156 public void debugPrint(PrintWriter out, String prefix, boolean verbose) { argument
157 out.println(ref.toHuman() + ":");
160 out.println("regs: " + Hex.u2(getRegistersSize()) +
164 insns.debugPrint(out, prefix, verbose);
169 out.print(prefix);
170 out.println("catches");
171 catches.debugPrint(out, prefix2);
175 out.print(prefix);
176 out
224 writeTo0(DexFile file, AnnotatedOutput out) argument
288 writeCodes(DexFile file, AnnotatedOutput out) argument
[all...]
H A DEncodedArrayItem.java95 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput();
96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out);
99 encodedForm = out.toByteArray();
105 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
106 boolean annotates = out.annotates();
109 out.annotate(0, offsetString() + " encoded array");
116 ValueEncoder encoder = new ValueEncoder(file, out);
119 out.write(encodedForm);
H A DSection.java143 * @param out {@code non-null;} where to write to
145 public final void writeTo(AnnotatedOutput out) { argument
147 align(out);
149 int cursor = out.getCursor();
159 if (out.annotates()) {
161 out.annotate(0, "\n" + name + ":");
163 out.annotate(0, "\n");
167 writeTo0(out);
260 * @param out {@code non-null;} the output to align
262 protected final void align(AnnotatedOutput out) { argument
276 writeTo0(AnnotatedOutput out) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DTwoColumnOutput.java32 private final Writer out; field in class:TwoColumnOutput
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
90 if (out == null) {
91 throw new NullPointerException("out == null");
109 this.out = out;
121 * @param out {@code non-null;} stream to send final output to
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, argument
128 this(new OutputStreamWriter(out), leftWidt
232 appendNewlineIfNecessary(StringBuffer buf, Writer out) argument
248 writeSpaces(Writer out, int amt) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DTwoColumnOutput.java32 private final Writer out; field in class:TwoColumnOutput
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth, argument
90 if (out == null) {
91 throw new NullPointerException("out == null");
109 this.out = out;
121 * @param out {@code non-null;} stream to send final output to
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth, argument
128 this(new OutputStreamWriter(out), leftWidt
232 appendNewlineIfNecessary(StringBuffer buf, Writer out) argument
248 writeSpaces(Writer out, int amt) argument
[all...]
/dalvik/tests/007-exceptions/src/
H A DMain.java25 System.out.print("Got an NPE: ");
26 System.out.println(npe.getMessage());
/dalvik/tests/016-intern/src/
H A DMain.java29 System.out.println("good! " + a);
31 System.out.println("bad!");
/dalvik/tests/018-stack-overflow/src/
H A DMain.java26 System.out.println("caught SOE");
28 System.out.println("SOE test done");
/dalvik/tests/034-call-null/src/
H A DMain.java7 System.out.println("mFoo is " + mFoo);
17 System.out.println("done");
/dalvik/tests/073-mismatched-field/src/
H A DMain.java25 System.out.println("value=" + this.f);
28 System.out.println("Got expected failure");
/dalvik/tests/302-float-conversion/src/
H A DMain.java38 System.out.println("Result is as expected");
40 System.out.println("Conversions failed over " + NUM_ITERATIONS + " iterations");
/dalvik/tests/046-reflect/src/
H A DMain.java22 System.out.println("Method name is " + meth.getName());
23 System.out.println(" Declaring class is "
27 System.out.println(" Arg " + i + ": " + params[i].getName());
30 System.out.println(" Exc " + i + ": " + exceptions[i].getName());
31 System.out.println(" Return type is " + meth.getReturnType().getName());
32 System.out.println(" Access flags are 0x"
34 //System.out.println(" GenericStr is " + meth.toGenericString());
38 System.out.println("Field name is " + field.getName());
39 System.out.println(" Declaring class is "
41 System.out
[all...]
/dalvik/tests/084-class-init/src/
H A DMain.java33 System.out.println(PartialInit.FIELD0);
36 System.out.println("Got expected EIIE for FIELD0");
40 System.out.println(PartialInit.FIELD0);
43 System.out.println("Got expected NCDFE for FIELD0");
46 System.out.println(PartialInit.FIELD1);
49 System.out.println("Got expected NCDFE for FIELD1");
53 System.out.println(Exploder.FIELD);
56 System.out.println("Got expected '" + expected.getMessage() + "' from Exploder");
79 System.out.println("Fields (main thread): " +
98 System.out
[all...]
/dalvik/tests/031-class-attributes/src/
H A DClassAttrs.java38 System.out.println(Modifier.toString(c.getModifiers()) + " " + c.getName());
93 System.out.println("constructor signature: "
98 System.out.println("method signature: "
103 System.out.println("field signature: "
115 /* to call the (out-of-scope) <code>getSignatureAttribute</code> methods */
167 System.out.println("***** " + clazz + ":");
169 System.out.println(" name: "
171 System.out.println(" canonical: "
173 System.out.println(" simple: "
175 System.out
[all...]
/dalvik/tests/027-arithmetic/src/
H A DMain.java20 System.out.println("values are " + Integer.toHexString(i1)
23 System.out.println("First l is " + Long.toHexString(l));
34 System.out.println("Second l is " + Long.toHexString(l));
51 System.out.println("shiftTest2 l is " + Long.toHexString(result));
64 System.out.println("f=" + f + " --> i=" + i);
68 System.out.println("f=" + f + " --> i=" + i);
73 System.out.println("d=" + d + " --> i=" + i);
77 System.out.println("d=" + d + " --> i=" + i);
82 System.out.println("d=" + d + " --> l=" + l);
86 System.out
[all...]

Completed in 249 milliseconds

1234567891011>>