Searched defs:write (Results 1 - 12 of 12) 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.java47 * @param value the value to write; all but the low 8 bits are ignored
54 * @param value the value to write; all but the low 16 bits are ignored
61 * @param value the value to write
68 * @param value the value to write
77 * @param value value to write, treated as an unsigned value
87 * @param value value to write
95 * @param bytes {@code non-null;} the array to write
97 public void write(ByteArray bytes); method in interface:Output
102 * @param bytes {@code non-null;} the array to write
104 * byte to write
107 public void write(byte[] bytes, int offset, int length); method in interface:Output
115 public void write(byte[] bytes); method in interface:Output
[all...]
H A DByteArrayAnnotatedOutput.java259 public void write(ByteArray bytes) { method in class:ByteArrayAnnotatedOutput
276 public void write(byte[] bytes, int offset, int length) { method in class:ByteArrayAnnotatedOutput
300 public void write(byte[] bytes) { method in class:ByteArrayAnnotatedOutput
301 write(bytes, 0, bytes.length);
320 * There is no need to actually write zeroes, since the array is
345 * There is no need to actually write zeroes, since the array is
473 * @param out {@code non-null;} where to write to
504 left.write(Hex.dump(data, start, end - start, start, hexCols, 6));
505 right.write(text);
512 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.java170 * @param out {@code non-null;} the output destination to write to
171 * @param insn {@code non-null;} the instruction to write
586 * @param out {@code non-null;} where to write to
587 * @param c0 code unit to write
589 protected static void write(AnnotatedOutput out, short c0) { method in class:InsnFormat
596 * @param out {@code non-null;} where to write to
597 * @param c0 code unit to write
598 * @param c1 code unit to write
600 protected static void write(AnnotatedOutput out, short c0, short c1) { method in class:InsnFormat
608 * @param out {@code non-null;} where to write t
613 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
629 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
647 protected static void write(AnnotatedOutput out, short c0, short c1, method in class:InsnFormat
665 protected static void write(AnnotatedOutput out, short c0, int c1c2) { method in class:InsnFormat
679 protected static void write(AnnotatedOutput out, short c0, int c1c2, method in class:InsnFormat
695 protected static void write(AnnotatedOutput out, short c0, int c1c2, method in class:InsnFormat
709 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/merge/
H A DDexMerger.java173 // write the header
181 // generate and write the hashes
262 // Write the smaller of a and b. If they're equal, write only once
290 write(toWrite);
319 write(e1.value);
345 abstract void write(T value); method in class:DexMerger.IdMerger
392 @Override void write(String value) {
418 @Override void write(Integer value) {
438 @Override void write(TypeList value) {
461 @Override void write(ProtoI
[all...]

Completed in 2190 milliseconds