Home | History | Annotate | Download | only in util

Lines Matching refs:buf

39         buf.setLength(0);
40 buf.append("xav").append(id).append(".visit(");
41 ASMifierAbstractVisitor.appendConstant(buf, name);
42 buf.append(", ");
43 ASMifierAbstractVisitor.appendConstant(buf, value);
44 buf.append(");\n");
45 text.add(buf.toString());
53 buf.setLength(0);
54 buf.append("xav").append(id).append(".visitEnum(");
55 ASMifierAbstractVisitor.appendConstant(buf, name);
56 buf.append(", ");
57 ASMifierAbstractVisitor.appendConstant(buf, desc);
58 buf.append(", ");
59 ASMifierAbstractVisitor.appendConstant(buf, value);
60 buf.append(");\n");
61 text.add(buf.toString());
68 buf.setLength(0);
69 buf.append("{\n");
70 buf.append("AnnotationVisitor av").append(id + 1).append(" = av");
71 buf.append(id).append(".visitAnnotation(");
72 ASMifierAbstractVisitor.appendConstant(buf, name);
73 buf.append(", ");
74 ASMifierAbstractVisitor.appendConstant(buf, desc);
75 buf.append(");\n");
76 text.add(buf.toString());
84 buf.setLength(0);
85 buf.append("{\n");
86 buf.append("AnnotationVisitor av").append(id + 1).append(" = av");
87 buf.append(id).append(".visitArray(");
88 ASMifierAbstractVisitor.appendConstant(buf, name);
89 buf.append(");\n");
90 text.add(buf.toString());
98 buf.setLength(0);
99 buf.append("xav").append(id).append(".visitEnd();\n");
100 text.add(buf.toString());
103 public void appendConstant(final StringBuffer buf, int i) {
104 ASMifierAbstractVisitor.appendConstant(buf, Integer.valueOf(i));
108 buf.setLength(0);
109 buf.append("xav").append(id).append(".visitXTargetType(");
110 appendConstant(buf, target_type);
111 buf.append(");\n");
112 text.add(buf.toString());
116 buf.setLength(0);
117 buf.append("xav").append(id).append(".visitXOffset(");
118 appendConstant(buf, offset);
119 buf.append(");\n");
120 text.add(buf.toString());
124 buf.setLength(0);
125 buf.append("xav").append(id).append(".visitXLocationLength(");
126 appendConstant(buf, location_length);
127 buf.append(");\n");
128 text.add(buf.toString());
132 buf.setLength(0);
133 buf.append("xav").append(id).append(".visitXLocation(");
134 buf.append(location.toString());
135 buf.append(");\n");
136 text.add(buf.toString());
140 buf.setLength(0);
141 buf.append("xav").append(id).append(".visitXNumEntries(");
142 appendConstant(buf, num_entries);
143 buf.append(");\n");
144 text.add(buf.toString());
148 buf.setLength(0);
149 buf.append("xav").append(id).append(".visitXStartPc(");
150 appendConstant(buf, start_pc);
151 buf.append(");\n");
152 text.add(buf.toString());
156 buf.setLength(0);
157 buf.append("xav").append(id).append(".visitXLength(");
158 appendConstant(buf, length);
159 buf.append(");\n");
160 text.add(buf.toString());
164 buf.setLength(0);
165 buf.append("xav").append(id).append(".visitXIndex(");
166 appendConstant(buf, index);
167 buf.append(");\n");
168 text.add(buf.toString());
172 buf.setLength(0);
173 buf.append("xav").append(id).append(".visitXParamIndex(");
174 appendConstant(buf, param_index);
175 buf.append(");\n");
176 text.add(buf.toString());
180 buf.setLength(0);
181 buf.append("xav").append(id).append(".visitXBoundIndex(");
182 appendConstant(buf, bound_index);
183 buf.append(");\n");
184 text.add(buf.toString());
188 buf.setLength(0);
189 buf.append("xav").append(id).append(".visitXTypeIndex(");
190 appendConstant(buf, type_index);
191 buf.append(");\n");
192 text.add(buf.toString());
196 buf.setLength(0);
197 buf.append("xav").append(id).append(".visitXExceptionIndex(");
198 appendConstant(buf, exception_index);
199 buf.append(");\n");
200 text.add(buf.toString());