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

1234567891011>>

/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java55 System.out.println("Classes:");
59 System.out.println(descriptorToDot(ref.getName()));
67 System.out.println("\nFields:");
74 System.out.println(descriptorToDot(ref.getDeclClassName()) +
84 System.out.println("\nMethods:");
91 System.out.println(descriptorToDot(ref.getDeclClassName()) +
106 System.out.println(IN0 + "<external>");
124 System.out.println(IN1 + "</package>");
127 System.out.println(IN1 +
133 System.out
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
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/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DStreamBlockCipher.java72 * process a block of bytes from in putting the result into out.
77 * @param out the output buffer the processed bytes go into.
85 byte[] out,
89 if (outOff + len > out.length)
96 cipher.processBlock(in, inOff + i, out, outOff + i);
81 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
H A DNullEngine.java51 public int processBlock(byte[] in, int inOff, byte[] out, int outOff) argument
59 if ((outOff + BLOCK_SIZE) > out.length)
66 out[outOff + i] = in[inOff + i];
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestUtils.java40 * <code>System.out</code> in the customizable form.
56 System.out.print(prefix + "0x" + tail + delimiter);
59 System.out.println("");
62 System.out.println("");
/dalvik/tests/062-character-encodings/src/
H A DMain.java14 System.out.println(canonicalName);
22 System.out.println(" " + s);
26 System.out.println(" (no aliases)");
/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/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
H A DChunkHandler.java65 ByteBuffer out = ByteBuffer.allocate(8 + msg.length() * 2);
66 out.order(ChunkHandler.CHUNK_ORDER);
67 out.putInt(errorCode);
68 out.putInt(msg.length());
69 putString(out, msg);
71 return new Chunk(CHUNK_FAIL, out);
87 * Utility function to copy a String out of a ByteBuffer.
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DMessageFormatFieldTest.java70 ObjectOutputStream out = null;
74 out = new ObjectOutputStream(bytes);
83 out.writeObject(mfield);
84 out.writeObject(field);
108 if (out != null)
109 out.close();
/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/libcore/archive/src/main/java/java/util/zip/
H A DCheckedOutputStream.java68 out.write(val);
88 out.write(buf, off, nbytes);
/dalvik/libcore/
H A Drun-core-tests-on-ri21 java -cp $top/cts/tools/utils/lib/junit.jar:$top/out/host/common/core-tests.jar \
/dalvik/libcore/security/src/main/java/java/security/
H A DGuardedObject.java70 private void writeObject(java.io.ObjectOutputStream out) throws IOException { argument
74 out.defaultWriteObject();
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERConstructedSequence.java33 DEROutputStream out)
51 out.writeEncoded(SEQUENCE | CONSTRUCTED, bytes);
32 encode( DEROutputStream out) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/io/
H A DDigestOutputStream.java26 out.write(b);
36 out.write(b, off, len);
H A DMacOutputStream.java26 out.write(b);
36 out.write(b, off, len);
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DFinished.java62 public void send(HandshakeIODataStream out) { argument
63 out.write(data);
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/spi/
H A DMidiFileWriter.java52 public abstract int write(Sequence in, int fileType, File out) argument
55 public abstract int write(Sequence in, int fileType, OutputStream out) argument
/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");
101 System.out.println("Cons got expected PackageAccess complaint");
115 System.out.println("Cons got expected InstantationException");
136 System.out.println("LocalClass3 succeeded");

Completed in 1861 milliseconds

1234567891011>>