Searched refs:out (Results 151 - 175 of 400) sorted by relevance

1234567891011>>

/dalvik/dexgen/src/com/android/dexgen/dex/file/
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);
H A DEncodedMethod.java140 public void debugPrint(PrintWriter out, boolean verbose) { argument
142 out.println(getRef().toHuman() + ": abstract or native");
144 code.debugPrint(out, " ", verbose);
159 public int encode(DexFile file, AnnotatedOutput out, argument
178 if (out.annotates()) {
179 out.annotate(0, String.format(" [%x] %s", dumpSeq,
181 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
183 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
186 out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
190 out
[all...]
H A DFieldIdsSection.java75 * @param out {@code non-null;} where to write
77 public void writeHeaderPart(AnnotatedOutput out) { argument
83 if (out.annotates()) {
84 out.annotate(4, "field_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "field_ids_off: " + Hex.u4(offset));
88 out.writeInt(sz);
89 out.writeInt(offset);
H A DMethodIdsSection.java75 * @param out {@code non-null;} where to write
77 public void writeHeaderPart(AnnotatedOutput out) { argument
83 if (out.annotates()) {
84 out.annotate(4, "method_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "method_ids_off: " + Hex.u4(offset));
88 out.writeInt(sz);
89 out.writeInt(offset);
H A DProtoIdsSection.java63 * @param out {@code non-null;} where to write
65 public void writeHeaderPart(AnnotatedOutput out) { argument
75 if (out.annotates()) {
76 out.annotate(4, "proto_ids_size: " + Hex.u4(sz));
77 out.annotate(4, "proto_ids_off: " + Hex.u4(offset));
80 out.writeInt(sz);
81 out.writeInt(offset);
H A DAnnotationSetItem.java133 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
134 boolean annotates = out.annotates();
138 out.annotate(0, offsetString() + " annotation set");
139 out.annotate(4, " size: " + Hex.u4(size));
142 out.writeInt(size);
149 out.annotate(4, " entries[" + Integer.toHexString(i) + "]: " +
151 items[i].annotateTo(out, " ");
154 out.writeInt(offset);
H A DCatchStructs.java107 * @param out {@code non-null;} where to dump
110 public void debugPrint(PrintWriter out, String prefix) { argument
111 annotateEntries(prefix, out, null);
140 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput();
142 // Write out the handlers "header" consisting of its size in entries.
144 out.writeUnsignedLeb128(handlerOffsets.size());
146 // Now write the lists out in order, noting the offset of each.
154 mapping.setValue(out.getCursor());
158 out.writeSignedLeb128(-(listSize - 1));
161 out
195 writeTo(DexFile file, AnnotatedOutput out) argument
[all...]
H A DEncodedMember.java61 * @param out {@code non-null;} where to dump
64 public abstract void debugPrint(PrintWriter out, boolean verbose); argument
77 * @param out {@code non-null;} where to write to
84 public abstract int encode(DexFile file, AnnotatedOutput out, argument
/dalvik/dx/src/com/android/dx/dex/file/
H A DStringIdItem.java97 public void writeTo(DexFile file, AnnotatedOutput out) { argument
100 if (out.annotates()) {
101 out.annotate(0, indexString() + ' ' + value.toQuoted(100));
102 out.annotate(4, " string_data_off: " + Hex.u4(dataOff));
105 out.writeInt(dataOff);
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);
H A DEncodedMethod.java140 public void debugPrint(PrintWriter out, boolean verbose) { argument
142 out.println(getRef().toHuman() + ": abstract or native");
144 code.debugPrint(out, " ", verbose);
159 public int encode(DexFile file, AnnotatedOutput out, argument
178 if (out.annotates()) {
179 out.annotate(0, String.format(" [%x] %s", dumpSeq,
181 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
183 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
186 out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
190 out
[all...]
H A DFieldIdsSection.java75 * @param out {@code non-null;} where to write
77 public void writeHeaderPart(AnnotatedOutput out) { argument
83 if (out.annotates()) {
84 out.annotate(4, "field_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "field_ids_off: " + Hex.u4(offset));
88 out.writeInt(sz);
89 out.writeInt(offset);
H A DMethodIdsSection.java75 * @param out {@code non-null;} where to write
77 public void writeHeaderPart(AnnotatedOutput out) { argument
83 if (out.annotates()) {
84 out.annotate(4, "method_ids_size: " + Hex.u4(sz));
85 out.annotate(4, "method_ids_off: " + Hex.u4(offset));
88 out.writeInt(sz);
89 out.writeInt(offset);
H A DProtoIdsSection.java63 * @param out {@code non-null;} where to write
65 public void writeHeaderPart(AnnotatedOutput out) { argument
75 if (out.annotates()) {
76 out.annotate(4, "proto_ids_size: " + Hex.u4(sz));
77 out.annotate(4, "proto_ids_off: " + Hex.u4(offset));
80 out.writeInt(sz);
81 out.writeInt(offset);
H A DAnnotationSetItem.java133 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
134 boolean annotates = out.annotates();
138 out.annotate(0, offsetString() + " annotation set");
139 out.annotate(4, " size: " + Hex.u4(size));
142 out.writeInt(size);
149 out.annotate(4, " entries[" + Integer.toHexString(i) + "]: " +
151 items[i].annotateTo(out, " ");
154 out.writeInt(offset);
H A DCatchStructs.java105 * @param out {@code non-null;} where to dump
108 public void debugPrint(PrintWriter out, String prefix) { argument
109 annotateEntries(prefix, out, null);
138 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput();
140 // Write out the handlers "header" consisting of its size in entries.
142 out.writeUleb128(handlerOffsets.size());
144 // Now write the lists out in order, noting the offset of each.
152 mapping.setValue(out.getCursor());
156 out.writeSleb128(-(listSize - 1));
159 out
193 writeTo(DexFile file, AnnotatedOutput out) argument
[all...]
H A DEncodedMember.java61 * @param out {@code non-null;} where to dump
64 public abstract void debugPrint(PrintWriter out, boolean verbose); argument
77 * @param out {@code non-null;} where to write to
84 public abstract int encode(DexFile file, AnnotatedOutput out, argument
/dalvik/tests/059-finalizer-throw/src/
H A DMain.java26 System.out.println("Timed out, exiting");
46 System.out.println("done");
50 System.out.println("In finalizer");
/dalvik/tests/092-locale/src/
H A DMain.java76 System.out.println("USA(" + fmt.getTimeZone().getID() + "): "
79 System.out.println("USA: first="
92 System.out.println("France(" + fmt.getTimeZone().getID() + "): "
95 System.out.println("France: first="
104 System.out.println("USA dfs: " + Arrays.deepToString(list));
111 System.out.println(usa.toString() + ": " + dollars.toString()
117 System.out.println(japan.toString() + ": " + yen.toString()
138 System.out.println("Normalizer passed");
148 System.out.println("loc: " + loc);
149 System.out
[all...]
/dalvik/tests/094-pattern/src/
H A DMain.java81 System.out.println("str1 matches: " + WEB_URL.matcher(testStr1).matches());
82 System.out.println("str2 matches: " + WEB_URL.matcher(testStr2).matches());
83 System.out.println("str3 matches: " + WEB_URL.matcher(testStr3).matches());
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java197 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32);
198 new EncodedValueTransformer(encodedValue, out).readValue();
199 return new EncodedValue(out.toByteArray());
203 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32);
204 new EncodedValueTransformer(encodedArray, out).readArray();
205 return new EncodedValue(out.toByteArray());
223 private final ByteOutput out; field in class:IndexMap.EncodedValueTransformer
225 public EncodedValueTransformer(EncodedValue encodedValue, ByteOutput out) { argument
227 this.out = out;
300 copyBytes(ByteInput in, ByteOutput out, int size) argument
[all...]
/dalvik/dx/tests/116-leb128/com/android/dx/util/
H A DLeb128UtilsTest.java61 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(5);
62 Leb128Utils.writeSignedLeb128(out, value);
63 return out.toByteArray();
67 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(5);
68 Leb128Utils.writeUnsignedLeb128(out, value);
69 return out.toByteArray();
/dalvik/hit/src/com/android/hit/
H A DMain.java60 System.out.println("------------------- " + thePackage);
65 System.out.println(" " + theClass.mClassName);
74 System.out.println("------------------- " + thePackage);
79 System.out.println(" " + theClass.mClassName);
87 System.out.println("There are " + instances.length + " Strings.");
94 System.out.println("There are " + instances.length
/dalvik/tests/079-phantom/src/
H A DBitmap.java41 System.out.println("Created " + this);
50 System.out.println("Drawing " + this);
58 System.out.println("join intr");
60 System.out.println("Bitmap has shut down");
82 System.out.println("freeNativeStorage: " + nativeDataPtr);
98 System.out.println("finalized " + mNativeData);
109 * object back out of a PhantomReference.
138 //System.out.println("dequeued ref " + ref.mNativeData +
143 System.out.println("intr");
/dalvik/tests/011-array-copy/src/
H A DMain.java35 System.out.println("string -> object");
37 System.out.println("object -> string");
39 System.out.println("object -> string (modified)");
45 System.out.println("caught ArrayStoreException (expected)");
94 System.out.println("mismatch int vs byte at " + i + " : " +
98 System.out.println("mismatch int vs short at " + i + " : " +
102 System.out.println("mismatch int vs long at " + i + " : " +
108 System.out.println("copy: " + srcPos + "," + dstPos + "," + length +

Completed in 439 milliseconds

1234567891011>>