Searched defs:write (Results 1 - 13 of 13) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DIndentingWriter.java91 public void write(int c) throws IOException { method in class:IndentingWriter
106 out.write('\n');
116 out.write(prefix);
121 out.write(' ');
127 out.write(c);
139 public void write(char[] cbuf, int off, int len) throws IOException { method in class:IndentingWriter
142 write(cbuf[off]);
151 public void write(String str, int off, int len) throws IOException { method in class:IndentingWriter
154 write(str.charAt(off));
H A DOutput.java45 * @param value the value to write; all but the low 8 bits are ignored
52 * @param value the value to write; all but the low 16 bits are ignored
59 * @param value the value to write
66 * @param value the value to write
75 * @param value value to write, treated as an unsigned value
85 * @param value value to write
93 * @param bytes {@code non-null;} the array to write
95 public void write(ByteArray bytes); method in interface:Output
100 * @param bytes {@code non-null;} the array to write
102 * byte to write
105 public void write(byte[] bytes, int offset, int length); method in interface:Output
113 public void write(byte[] bytes); method in interface:Output
[all...]
H A DByteArrayAnnotatedOutput.java263 public void write(ByteArray bytes) { method in class:ByteArrayAnnotatedOutput
280 public void write(byte[] bytes, int offset, int length) { method in class:ByteArrayAnnotatedOutput
304 public void write(byte[] bytes) { method in class:ByteArrayAnnotatedOutput
305 write(bytes, 0, bytes.length);
324 * There is no need to actually write zeroes, since the array is
349 * There is no need to actually write zeroes, since the array is
477 * @param out {@code non-null;} where to write to
508 left.write(Hex.dump(data, start, end - start, start, hexCols, 6));
509 right.write(text);
516 left.write(He
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DCodeOutput.java26 public void write(short codeUnit); method in interface:CodeOutput
31 public void write(short u0, short u1); method in interface:CodeOutput
36 public void write(short u0, short u1, short u2); method in interface:CodeOutput
41 public void write(short u0, short u1, short u2, short u3); method in interface:CodeOutput
46 public void write(short u0, short u1, short u2, short u3, short u4); method in interface:CodeOutput
61 public void write(byte[] data); method in interface:CodeOutput
66 public void write(short[] data); method in interface:CodeOutput
71 public void write(int[] data); method in interface:CodeOutput
76 public void write(long[] data); method in interface:CodeOutput
H A DShortArrayCodeOutput.java24 /** array to write to */
57 public void write(short codeUnit) { method in class:ShortArrayCodeOutput
63 public void write(short u0, short u1) { method in class:ShortArrayCodeOutput
64 write(u0);
65 write(u1);
69 public void write(short u0, short u1, short u2) { method in class:ShortArrayCodeOutput
70 write(u0);
71 write(u1);
72 write(u2);
76 public void write(shor method in class:ShortArrayCodeOutput
84 public void write(short u0, short u1, short u2, short u3, short u4) { method in class:ShortArrayCodeOutput
107 public void write(byte[] data) { method in class:ShortArrayCodeOutput
127 public void write(short[] data) { method in class:ShortArrayCodeOutput
134 public void write(int[] data) { method in class:ShortArrayCodeOutput
141 public void write(long[] data) { method in class:ShortArrayCodeOutput
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DIndentingWriter.java91 public void write(int c) throws IOException { method in class:IndentingWriter
106 out.write('\n');
116 out.write(prefix);
121 out.write(' ');
127 out.write(c);
139 public void write(char[] cbuf, int off, int len) throws IOException { method in class:IndentingWriter
142 write(cbuf[off]);
151 public void write(String str, int off, int len) throws IOException { method in class:IndentingWriter
154 write(str.charAt(off));
H A DOutput.java45 * @param value the value to write; all but the low 8 bits are ignored
52 * @param value the value to write; all but the low 16 bits are ignored
59 * @param value the value to write
66 * @param value the value to write
75 * @param value value to write, treated as an unsigned value
85 * @param value value to write
93 * @param bytes {@code non-null;} the array to write
95 public void write(ByteArray bytes); method in interface:Output
100 * @param bytes {@code non-null;} the array to write
102 * byte to write
105 public void write(byte[] bytes, int offset, int length); method in interface:Output
113 public void write(byte[] bytes); method in interface:Output
[all...]
H A DByteArrayAnnotatedOutput.java256 public void write(ByteArray bytes) { method in class:ByteArrayAnnotatedOutput
273 public void write(byte[] bytes, int offset, int length) { method in class:ByteArrayAnnotatedOutput
297 public void write(byte[] bytes) { method in class:ByteArrayAnnotatedOutput
298 write(bytes, 0, bytes.length);
317 * There is no need to actually write zeroes, since the array is
342 * There is no need to actually write zeroes, since the array is
470 * @param out {@code non-null;} where to write to
501 left.write(Hex.dump(data, start, end - start, start, hexCols, 6));
502 right.write(text);
509 left.write(He
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java155 * @param out {@code non-null;} the output destination to write to
156 * @param insn {@code non-null;} the instruction to write
488 * @param out {@code non-null;} where to write to
489 * @param c0 code unit to write
491 protected static void write(AnnotatedOutput out, short c0) { method in class:InsnFormat
498 * @param out {@code non-null;} where to write to
499 * @param c0 code unit to write
500 * @param c1 code unit to write
502 protected static void write(AnnotatedOutput out, short c0, short c1) { method in class:InsnFormat
510 * @param out {@code non-null;} where to write t
515 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
531 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
549 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
569 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java171 * @param out {@code non-null;} the output destination to write to
172 * @param insn {@code non-null;} the instruction to write
587 * @param out {@code non-null;} where to write to
588 * @param c0 code unit to write
590 protected static void write(AnnotatedOutput out, short c0) { method in class:InsnFormat
597 * @param out {@code non-null;} where to write to
598 * @param c0 code unit to write
599 * @param c1 code unit to write
601 protected static void write(AnnotatedOutput out, short c0, short c1) { method in class:InsnFormat
609 * @param out {@code non-null;} where to write t
614 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
630 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
648 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
666 protected static void write(AnnotatedOutput out, short c0, int c1c2) { method in class:InsnFormat
680 protected static void write(AnnotatedOutput out, short c0, int c1c2, method in class:InsnFormat
696 protected static void write(AnnotatedOutput out, short c0, int c1c2, method in class:InsnFormat
710 protected static void write(AnnotatedOutput out, short c0, long c1c2c3c4) { method in class:InsnFormat
[all...]
/dalvik/dx/etc/
H A Djasmin.jar ... void resolve (jas.ClassEnv) jas.ClassEnv e void write (jas.ClassEnv, java.io.DataOutputStream) throws java ...
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java171 bytesOut.write(buffer, 0, count);
187 out.write(data);
611 public void write(byte[] bytes) { method in class:DexBuffer.Section
637 public void write(short[] shorts) { method in class:DexBuffer.Section
678 write(Mutf8.encode(value));
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java170 // write the header
178 // generate and write the hashes
259 // Write the smaller of a and b. If they're equal, write only once
287 write(toWrite);
316 write(e1.value);
342 abstract void write(T value); method in class:DexMerger.IdMerger
389 @Override void write(String value) {
415 @Override void write(Integer value) {
435 @Override void write(TypeList value) {
458 @Override void write(ProtoI
[all...]

Completed in 466 milliseconds