Searched defs:csq (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DAppendable.java57 * <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 DClose.java39 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 DFlush.java40 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 DStringWriter.java118 * <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 DWriter.java199 * <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 DCharArrayWriter.java144 * <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 DPrintStream.java1040 * <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 DPrintWriter.java979 * <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 DBasic.java46 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);

Completed in 107 milliseconds