/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | Appendable.java | 57 * <tt>csq</tt>, the entire sequence may not be appended. For 58 * instance, if <tt>csq</tt> is a {@link java.nio.CharBuffer} then 61 * @param csq 62 * The character sequence to append. If <tt>csq</tt> is 71 Appendable append(CharSequence csq) throws IOException; argument 77 * <p> An invocation of this method of the form <tt>out.append(csq, start, 78 * end)</tt> when <tt>csq</tt> is not <tt>null</tt>, behaves in 82 * out.append(csq.subSequence(start, end)) </pre> 84 * @param csq 86 * appended. If <tt>csq</t 107 append(CharSequence csq, int start, int end) argument [all...] |
/openjdk7/jdk/test/java/util/Formatter/ |
H A D | Close.java | 39 public Appendable append(CharSequence csq) { return null; } argument 41 public Appendable append(CharSequence csq, int s, int e) { argument 51 public Appendable append(CharSequence csq) { return null; } argument 53 public Appendable append(CharSequence csq, int s, int e) { argument
|
H A D | Flush.java | 40 public Appendable append(CharSequence csq) { return null; } argument 42 public Appendable append(CharSequence csq, int s, int e) { argument 53 public Appendable append(CharSequence csq) { return null; } argument 55 public Appendable append(CharSequence csq, int s, int e) { argument
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | StringWriter.java | 118 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 122 * out.write(csq.toString()) </pre> 125 * character sequence <tt>csq</tt>, the entire sequence may not be 130 * @param csq 131 * The character sequence to append. If <tt>csq</tt> is 139 public StringWriter append(CharSequence csq) { argument 140 if (csq == null) 143 write(csq.toString()); 150 * <p> An invocation of this method of the form <tt>out.append(csq, start, 151 * end)</tt> when <tt>csq</t 179 append(CharSequence csq, int start, int end) argument [all...] |
H A D | Writer.java | 199 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 203 * out.write(csq.toString()) </pre> 206 * character sequence <tt>csq</tt>, the entire sequence may not be 211 * @param csq 212 * The character sequence to append. If <tt>csq</tt> is 223 public Writer append(CharSequence csq) throws IOException { argument 224 if (csq == null) 227 write(csq.toString()); 235 * <p> An invocation of this method of the form <tt>out.append(csq, start, 236 * end)</tt> when <tt>csq</t 267 append(CharSequence csq, int start, int end) argument [all...] |
H A D | CharArrayWriter.java | 144 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 148 * out.write(csq.toString()) </pre> 151 * character sequence <tt>csq</tt>, the entire sequence may not be 156 * @param csq 157 * The character sequence to append. If <tt>csq</tt> is 165 public CharArrayWriter append(CharSequence csq) { argument 166 String s = (csq == null ? "null" : csq.toString()); 174 * <p> An invocation of this method of the form <tt>out.append(csq, start, 175 * end)</tt> when <tt>csq</t 203 append(CharSequence csq, int start, int end) argument [all...] |
H A D | PrintStream.java | 1040 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 1044 * out.print(csq.toString()) </pre> 1047 * character sequence <tt>csq</tt>, the entire sequence may not be 1052 * @param csq 1053 * The character sequence to append. If <tt>csq</tt> is 1061 public PrintStream append(CharSequence csq) { argument 1062 if (csq == null) 1065 print(csq.toString()); 1073 * <p> An invocation of this method of the form <tt>out.append(csq, start, 1074 * end)</tt> when <tt>csq</t 1102 append(CharSequence csq, int start, int end) argument [all...] |
H A D | PrintWriter.java | 979 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 983 * out.write(csq.toString()) </pre> 986 * character sequence <tt>csq</tt>, the entire sequence may not be 991 * @param csq 992 * The character sequence to append. If <tt>csq</tt> is 1000 public PrintWriter append(CharSequence csq) { argument 1001 if (csq == null) 1004 write(csq.toString()); 1011 * <p> An invocation of this method of the form <tt>out.append(csq, start, 1012 * end)</tt> when <tt>csq</t 1040 append(CharSequence csq, int start, int end) argument [all...] |
/openjdk7/jdk/test/java/lang/Appendable/ |
H A D | Basic.java | 46 void init(Appendable a, String csq, String exp); argument 47 Appendable reset(Appendable csq); argument 298 private static void test(Appendable a, CharSequence csq, BasicRunnable thunk) { argument 307 thunk.init(a.append(csq, start, end), 308 csq.getClass().getName(), 325 a.append(csq, start, end);
|