Home | History | Annotate | Download | only in util

Lines Matching defs:append

80         buf.append("{\n")
81 .append("av0 = ")
82 .append(name)
83 .append(".visitAnnotation(");
85 buf.append(", ").append(visible).append(");\n");
106 buf.append("{\n")
107 .append("xav0 = ")
108 .append(name)
109 .append(".visitTypeAnnotation(");
111 buf.append(", ").append(visible);
112 buf.append(", ").append(inCode).append(");\n");
130 buf.append("{\n");
131 buf.append("// ATTRIBUTE\n");
133 buf.append(name).append(".visitAttribute(attr);\n");
134 buf.append("}\n");
136 buf.append("// WARNING! skipped a non standard attribute of type \"");
137 buf.append(attr.type).append("\"\n");
147 buf.append(name).append(".visitEnd();\n");
172 buf.append("null");
176 buf.append("Type.getType(\"");
177 buf.append(((Type) cst).getDescriptor());
178 buf.append("\")");
180 buf.append("new Byte((byte)").append(cst).append(")");
182 buf.append("new Boolean(").append(cst).append(")");
184 buf.append("new Short((short)").append(cst).append(")");
187 buf.append("new Character((char)").append(c).append(")");
189 buf.append("new Integer(").append(cst).append(")");
191 buf.append("new Float(\"").append(cst).append("\")");
193 buf.append("new Long(").append(cst).append("L)");
195 buf.append("new Double(\"").append(cst).append("\")");
198 buf.append("new byte[] {");
200 buf.append(i == 0 ? "" : ",").append(v[i]);
202 buf.append("}");
205 buf.append("new boolean[] {");
207 buf.append(i == 0 ? "" : ",").append(v[i]);
209 buf.append("}");
212 buf.append("new short[] {");
214 buf.append(i == 0 ? "" : ",").append("(short)").append(v[i]);
216 buf.append("}");
219 buf.append("new char[] {");
221 buf.append(i == 0 ? "" : ",")
222 .append("(char)")
223 .append((int) v[i]);
225 buf.append("}");
228 buf.append("new int[] {");
230 buf.append(i == 0 ? "" : ",").append(v[i]);
232 buf.append("}");
235 buf.append("new long[] {");
237 buf.append(i == 0 ? "" : ",").append(v[i]).append("L");
239 buf.append("}");
242 buf.append("new float[] {");
244 buf.append(i == 0 ? "" : ",").append(v[i]).append("f");
246 buf.append("}");
249 buf.append("new double[] {");
251 buf.append(i == 0 ? "" : ",").append(v[i]).append("d");
253 buf.append("}");