Lines Matching refs:append

78         buf.append("{\n")

79 .append("av0 = ")
80 .append(name)
81 .append(".visitAnnotation(");
83 buf.append(", ").append(visible).append(");\n");
98 buf.append("// ATTRIBUTE ").append(attr.type).append('\n');
100 buf.append("{\n");
102 buf.append(name).append(".visitAttribute(attr);\n");
103 buf.append("}\n");
113 buf.append(name).append(".visitEnd();\n");
138 buf.append("null");
142 buf.append("Type.getType(\"");
143 buf.append(((Type) cst).getDescriptor());
144 buf.append("\")");
146 buf.append("new Byte((byte)").append(cst).append(')');
148 buf.append(((Boolean) cst).booleanValue() ? "Boolean.TRUE" : "Boolean.FALSE");
150 buf.append("new Short((short)").append(cst).append(')');
153 buf.append("new Character((char)").append(c).append(')');
155 buf.append("new Integer(").append(cst).append(')');
157 buf.append("new Float(\"").append(cst).append("\")");
159 buf.append("new Long(").append(cst).append("L)");
161 buf.append("new Double(\"").append(cst).append("\")");
164 buf.append("new byte[] {");
166 buf.append(i == 0 ? "" : ",").append(v[i]);
168 buf.append('}');
171 buf.append("new boolean[] {");
173 buf.append(i == 0 ? "" : ",").append(v[i]);
175 buf.append('}');
178 buf.append("new short[] {");
180 buf.append(i == 0 ? "" : ",").append("(short)").append(v[i]);
182 buf.append('}');
185 buf.append("new char[] {");
187 buf.append(i == 0 ? "" : ",")
188 .append("(char)")
189 .append((int) v[i]);
191 buf.append('}');
194 buf.append("new int[] {");
196 buf.append(i == 0 ? "" : ",").append(v[i]);
198 buf.append('}');
201 buf.append("new long[] {");
203 buf.append(i == 0 ? "" : ",").append(v[i]).append('L');
205 buf.append('}');
208 buf.append("new float[] {");
210 buf.append(i == 0 ? "" : ",").append(v[i]).append('f');
212 buf.append('}');
215 buf.append("new double[] {");
217 buf.append(i == 0 ? "" : ",").append(v[i]).append('d');
219 buf.append('}');