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

1234567891011>>

/dalvik/tests/013-math2/src/
H A DMain.java29 System.out.println("a:" +a);
/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/tests/004-annotations/src/android/test/anno/
H A DTestAnnotations.java23 System.out.println(prefix + " " + a);
24 System.out.println(prefix + " " + a.annotationType());
33 System.out.println("annotations on TYPE " + clazz +
36 System.out.println();
40 System.out.println(" annotations on CTOR " + c + ":");
43 System.out.println(" constructor parameter annotations:");
51 System.out.println(" annotations on METH " + m + ":");
54 System.out.println(" method parameter annotations:");
62 System.out.println(" annotations on FIELD " + f + ":");
68 System.out
[all...]
/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.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 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.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...]
/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/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/031-class-attributes/src/
H A DClassAttrs.java53 System.out.println("constructor signature: "
58 System.out.println("method signature: "
63 System.out.println("field signature: "
75 /* to call the (out-of-scope) <code>getSignatureAttribute</code> methods */
127 System.out.println("***** " + clazz + ":");
129 System.out.println(" name: "
131 System.out.println(" canonical: "
133 System.out.println(" simple: "
135 System.out.println(" genericSignature: "
138 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 418 milliseconds

1234567891011>>