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

/dalvik/libcore/luni/src/main/java/java/lang/
H A DAppendable.java49 * Appends the character sequence {@code csq}. Implementation classes may
53 * If {@code csq} is {@code null}, the characters "null" are appended.
55 * @param csq
61 Appendable append(CharSequence csq) throws IOException; argument
64 * Appends a subsequence of {@code csq}.
66 * If {@code csq} is not {@code null} then calling this method is equivalent
67 * to calling {@code append(csq.subSequence(start, end))}.
69 * If {@code csq} is {@code null}, the characters "null" are appended.
71 * @param csq
74 * the first index of the subsequence of {@code csq} tha
86 append(CharSequence csq, int start, int end) argument
[all...]
H A DStringBuilder.java281 * @param csq
285 public StringBuilder append(CharSequence csq) { argument
286 if (csq == null) {
289 append0(csq.toString());
299 * @param csq
309 * the length of {@code csq}.
311 public StringBuilder append(CharSequence csq, int start, int end) { argument
312 append0(csq, start, end);
/dalvik/libcore/luni/src/main/java/java/io/
H A DStringWriter.java200 * Appends the character sequence {@code csq} to this writer's {@code
202 * StringWriter.write(csq.toString())}. If {@code csq} is {@code null}, then
205 * @param csq
210 public StringWriter append(CharSequence csq) { argument
211 if (null == csq) {
214 write(csq.toString());
220 * Appends a subsequence of the character sequence {@code csq} to this
222 * StringWriter.writer(csq.subsequence(start, end).toString())}. If {@code
223 * csq} i
241 append(CharSequence csq, int start, int end) argument
[all...]
H A DWriter.java199 * Appends the character sequence {@code csq} to the target. This method
200 * works the same way as {@code Writer.write(csq.toString())}. If {@code
201 * csq} is {@code null}, then the string "null" is written to the target
204 * @param csq
210 public Writer append(CharSequence csq) throws IOException { argument
211 if (null == csq) {
214 write(csq.toString());
220 * Appends a subsequence of the character sequence {@code csq} to the
222 * Writer.writer(csq.subsequence(start, end).toString())}. If {@code
223 * csq} i
242 append(CharSequence csq, int start, int end) argument
[all...]
H A DCharArrayWriter.java280 * works the same way as {@code write(csq.toString())}. If {@code csq} is
283 * @param csq
289 public CharArrayWriter append(CharSequence csq) { argument
290 if (null == csq) {
293 append(csq, 0, csq.length());
302 * {@code CharArrayWriter.append(csq)} works the same way as {@code
303 * CharArrayWriter.write(csq.subSequence(start, end).toString)}. If {@code
304 * csq} i
322 append(CharSequence csq, int start, int end) argument
[all...]
H A DPrintStream.java743 * Appends the character sequence {@code csq} to the target stream. This
744 * method works the same way as {@code PrintStream.print(csq.toString())}.
745 * If {@code csq} is {@code null}, then the string "null" is written to the
748 * @param csq
752 public PrintStream append(CharSequence csq) { argument
753 if (null == csq) {
756 print(csq.toString());
762 * Appends a subsequence of the character sequence {@code csq} to the target
764 * PrintStream.print(csq.subsequence(start, end).toString())}. If {@code
765 * csq} i
782 append(CharSequence csq, int start, int end) argument
[all...]
H A DPrintWriter.java761 * Appends the character sequence {@code csq} to the target. This
762 * method works the same way as {@code PrintWriter.print(csq.toString())}.
763 * If {@code csq} is {@code null}, then the string "null" is written
766 * @param csq
771 public PrintWriter append(CharSequence csq) { argument
772 if (null == csq) {
775 append(csq, 0, csq.length());
781 * Appends a subsequence of the character sequence {@code csq} to the
783 * PrintWriter.print(csq
802 append(CharSequence csq, int start, int end) argument
[all...]
/dalvik/libcore/nio/src/main/java/java/nio/
H A DCharBuffer.java734 * Writes all chars of the given character sequence {@code csq} to the
736 * of the csq.
738 * Calling this method has the same effect as {@code append(csq.toString())}.
742 * @param csq
746 * if {@code remaining()} is less than the length of csq.
750 public CharBuffer append(CharSequence csq) { argument
751 if (csq != null) {
752 return put(csq.toString());
761 * @param csq
765 * than {@code csq
777 append(CharSequence csq, int start, int end) argument
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DFormatterTest.java133 public Appendable append(CharSequence csq) throws IOException { argument
135 data.append(csq);
143 public Appendable append(CharSequence csq, int start, int end) argument
146 data.append(csq, start, end);

Completed in 2558 milliseconds