Home | History | Annotate | Download | only in nano

Lines Matching defs:append

100                 buf.append(indentBuf).append(deCamelCaseify(identifier)).append(" <\n");
101 indentBuf.append(INDENT);
176 buf.append(indentBuf).append(">\n");
183 buf.append(indentBuf).append(identifier).append(" <\n");
185 indentBuf.append(INDENT);
189 buf.append(indentBuf).append(">\n");
194 buf.append(indentBuf).append(identifier).append(": ");
197 buf.append("\"").append(stringMessage).append("\"");
201 buf.append(object);
203 buf.append("\n");
215 out.append(Character.toLowerCase(currentChar));
217 out.append('_').append(Character.toLowerCase(currentChar));
219 out.append(currentChar);
245 b.append(original);
247 b.append(String.format("\\u%04x", (int) original));
258 builder.append("\"\"");
262 builder.append('"');
266 builder.append('\\').append((char) ch);
268 builder.append((char) ch);
270 builder.append(String.format("\\%03o", ch));
273 builder.append('"');