Searched refs:prefix (Results 1 - 25 of 36) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/util/
H A DIndentingWriter.java30 /** {@code null-ok;} optional prefix for every line */
31 private final String prefix; field in class:IndentingWriter
53 * {@code prefix}), or {@code 0} for no maximum
54 * @param prefix {@code non-null;} the prefix for each line
56 public IndentingWriter(Writer out, int width, String prefix) { argument
67 if (prefix == null) {
68 throw new NullPointerException("prefix == null");
73 this.prefix = (prefix
[all...]
H A DFixedSizeList.java97 * @param prefix {@code null-ok;} prefix for the start of the result
102 public String toString(String prefix, String separator, String suffix) { argument
103 return toString0(prefix, separator, suffix, false);
111 * @param prefix {@code null-ok;} prefix for the start of the result
116 public String toHuman(String prefix, String separator, String suffix) { argument
117 return toString0(prefix, separator, suffix, true);
242 * @param prefix {@code null-ok;} prefix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DIndentingWriter.java30 /** {@code null-ok;} optional prefix for every line */
31 private final String prefix; field in class:IndentingWriter
53 * {@code prefix}), or {@code 0} for no maximum
54 * @param prefix {@code non-null;} the prefix for each line
56 public IndentingWriter(Writer out, int width, String prefix) { argument
67 if (prefix == null) {
68 throw new NullPointerException("prefix == null");
73 this.prefix = (prefix
[all...]
H A DFixedSizeList.java97 * @param prefix {@code null-ok;} prefix for the start of the result
102 public String toString(String prefix, String separator, String suffix) { argument
103 return toString0(prefix, separator, suffix, false);
111 * @param prefix {@code null-ok;} prefix for the start of the result
116 public String toHuman(String prefix, String separator, String suffix) { argument
117 return toString0(prefix, separator, suffix, true);
242 * @param prefix {@code null-ok;} prefix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoItem.java98 * @param prefix {@code null-ok;} prefix to attach to each line of output
100 public void annotateTo(DexFile file, AnnotatedOutput out, String prefix) { argument
101 encode(file, prefix, null, out, false);
108 * @param prefix {@code non-null;} prefix to attach to each line of output
110 public void debugPrint(PrintWriter out, String prefix) { argument
111 encode(null, prefix, out, null, false);
134 * @param prefix {@code null-ok;} prefix t
142 encode(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
173 encode0(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
[all...]
H A DCatchStructs.java108 * @param prefix {@code non-null;} prefix to attach to each line of output
110 public void debugPrint(PrintWriter out, String prefix) { argument
111 annotateEntries(prefix, out, null);
228 * @param prefix {@code non-null;} prefix for each line
232 private void annotateEntries(String prefix, PrintWriter printTo, argument
240 String subPrefix = prefix + " ";
243 annotateTo.annotate(0, prefix + "tries:");
245 printTo.println(prefix
306 annotateAndConsumeHandlers(CatchHandlerList handlers, int offset, int size, String prefix, PrintWriter printTo, AnnotatedOutput annotateTo) argument
[all...]
H A DAnnotationItem.java171 * @param prefix {@code non-null;} prefix for each line of output
173 public void annotateTo(AnnotatedOutput out, String prefix) { argument
174 out.annotate(0, prefix + "visibility: " +
176 out.annotate(0, prefix + "type: " + annotation.getType().toHuman());
182 out.annotate(0, prefix + name.toHuman() + ": " +
H A DCodeItem.java162 * @param prefix {@code non-null;} per-line prefix to use
165 public void debugPrint(PrintWriter out, String prefix, boolean verbose) { argument
173 insns.debugPrint(out, prefix, verbose);
175 String prefix2 = prefix + " ";
178 out.print(prefix);
184 out.print(prefix);
H A DDebugInfoEncoder.java87 /** if non-null: the prefix for each annotation or debugPrint line */
88 private String prefix; field in class:DebugInfoEncoder
131 if (prefix != null) {
132 message = prefix + message;
173 * @param prefix {@code null-ok;} prefix to attach to each line of output
181 public byte[] convertAndAnnotate(String prefix, PrintWriter debugPrint, argument
183 this.prefix = prefix;
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoItem.java96 * @param prefix {@code null-ok;} prefix to attach to each line of output
98 public void annotateTo(DexFile file, AnnotatedOutput out, String prefix) { argument
99 encode(file, prefix, null, out, false);
106 * @param prefix {@code non-null;} prefix to attach to each line of output
108 public void debugPrint(PrintWriter out, String prefix) { argument
109 encode(null, prefix, out, null, false);
132 * @param prefix {@code null-ok;} prefix t
140 encode(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
171 encode0(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
[all...]
H A DCatchStructs.java106 * @param prefix {@code non-null;} prefix to attach to each line of output
108 public void debugPrint(PrintWriter out, String prefix) { argument
109 annotateEntries(prefix, out, null);
226 * @param prefix {@code non-null;} prefix for each line
230 private void annotateEntries(String prefix, PrintWriter printTo, argument
238 String subPrefix = prefix + " ";
241 annotateTo.annotate(0, prefix + "tries:");
243 printTo.println(prefix
304 annotateAndConsumeHandlers(CatchHandlerList handlers, int offset, int size, String prefix, PrintWriter printTo, AnnotatedOutput annotateTo) argument
[all...]
H A DAnnotationItem.java169 * @param prefix {@code non-null;} prefix for each line of output
171 public void annotateTo(AnnotatedOutput out, String prefix) { argument
172 out.annotate(0, prefix + "visibility: " +
174 out.annotate(0, prefix + "type: " + annotation.getType().toHuman());
180 out.annotate(0, prefix + name.toHuman() + ": " +
H A DCodeItem.java162 * @param prefix {@code non-null;} per-line prefix to use
165 public void debugPrint(PrintWriter out, String prefix, boolean verbose) { argument
173 insns.debugPrint(out, prefix, verbose);
175 String prefix2 = prefix + " ";
178 out.print(prefix);
184 out.print(prefix);
H A DDebugInfoEncoder.java87 /** if non-null: the prefix for each annotation or debugPrint line */
88 private String prefix; field in class:DebugInfoEncoder
131 if (prefix != null) {
132 message = prefix + message;
173 * @param prefix {@code null-ok;} prefix to attach to each line of output
181 public byte[] convertAndAnnotate(String prefix, PrintWriter debugPrint, argument
183 this.prefix = prefix;
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java61 * @param prefix {@code non-null;} the prefix for every line
63 * first prefix)
66 public String toHuman(String prefix, String header) { argument
70 sb.append(prefix);
79 sb.append(prefix);
H A DDalvInsnList.java220 * @param prefix {@code non-null;} prefix to attach to each line of output
224 public void debugPrint(Writer out, String prefix, boolean verbose) { argument
225 IndentingWriter iw = new IndentingWriter(out, 0, prefix);
254 * @param prefix {@code non-null;} prefix to attach to each line of output
258 public void debugPrint(OutputStream out, String prefix, boolean verbose) { argument
260 debugPrint(w, prefix, verbose);
H A DOutputFinisher.java581 DalvInsn prefix;
586 prefix = null;
590 prefix = insn.hrPrefix();
602 if (prefix != null) {
603 result.add(prefix);
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java61 * @param prefix {@code non-null;} the prefix for every line
63 * first prefix)
66 public String toHuman(String prefix, String header) { argument
70 sb.append(prefix);
79 sb.append(prefix);
H A DDalvInsnList.java221 * @param prefix {@code non-null;} prefix to attach to each line of output
225 public void debugPrint(Writer out, String prefix, boolean verbose) { argument
226 IndentingWriter iw = new IndentingWriter(out, 0, prefix);
255 * @param prefix {@code non-null;} prefix to attach to each line of output
259 public void debugPrint(OutputStream out, String prefix, boolean verbose) { argument
261 debugPrint(w, prefix, verbose);
H A DOutputFinisher.java610 DalvInsn prefix;
615 prefix = null;
622 prefix = insn.expandedPrefix(compatRegs);
631 // because we need to add it after the prefix for the
639 if (prefix != null) {
640 result.add(prefix);
/dalvik/tests/004-annotations/src/android/test/anno/
H A DTestAnnotations.java14 static private void printAnnotationArray(String prefix, Annotation[] arr) { argument
23 System.out.println(prefix + " " + a);
24 System.out.println(prefix + " " + a.annotationType());
/dalvik/vm/compiler/
H A DCompilerUtility.h72 void dvmDumpResourceMask(struct LIR *lir, u8 mask, const char *prefix);
/dalvik/vm/compiler/codegen/x86/libenc/
H A Dencoder.inl104 ENCODER_DECLARE_EXPORT char * prefix(char * stream, InstrPrefix p) {
644 stream = prefix(stream, pref);
659 stream = prefix(stream, pref);
669 ENCODER_DECLARE_EXPORT char * branch(char * stream, ConditionCode cc, const char * target, InstrPrefix prefix) {
817 ENCODER_DECLARE_EXPORT char * scas(char * stream, unsigned char prefix)
820 if (prefix != no_prefix) {
821 assert(prefix == prefix_repnz || prefix == prefix_repz);
822 *stream = prefix;
828 ENCODER_DECLARE_EXPORT char * stos(char * stream, unsigned char prefix)
[all...]
H A Denc_defs_ext.h82 #define CCM(prefix,cond) Mnemonic_##prefix##cond=Mnemonic_##prefix##cc+ConditionMnemonic_##cond
/dalvik/vm/mterp/
H A Dgen-mterp.py197 def emitJmpTable(start_label, prefix):
205 asm_fp.write(" .long " + prefix + \
403 def emitAsmHeader(outfp, dict, prefix):
411 outfp.write(prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict)

Completed in 447 milliseconds

12