/libcore/luni/src/main/java/java/io/ |
StringWriter.java | 185 * Appends the character sequence {@code csq} to this writer's {@code 187 * StringWriter.write(csq.toString())}. If {@code csq} is {@code null}, then 190 * @param csq 195 public StringWriter append(CharSequence csq) { 196 if (csq == null) { 197 csq = "null"; 199 write(csq.toString()); 204 * Appends a subsequence of the character sequence {@code csq} to this 206 * StringWriter.writer(csq.subsequence(start, end).toString())}. If {@cod [all...] |
Writer.java | 187 * Appends the character sequence {@code csq} to the target. This method 188 * works the same way as {@code Writer.write(csq.toString())}. If {@code 189 * csq} is {@code null}, then the string "null" is written to the target 192 * @param csq 198 public Writer append(CharSequence csq) throws IOException { 199 if (csq == null) { 200 csq = "null"; 202 write(csq.toString()); 207 * Appends a subsequence of the character sequence {@code csq} to the 209 * Writer.writer(csq.subsequence(start, end).toString())}. If {@cod [all...] |
CharArrayWriter.java | 251 * works the same way as {@code write(csq.toString())}. If {@code csq} is 254 * @param csq 260 public CharArrayWriter append(CharSequence csq) { 261 if (csq == null) { 262 csq = "null"; 264 append(csq, 0, csq.length()); 272 * {@code CharArrayWriter.append(csq)} works the same way as {@code 273 * CharArrayWriter.write(csq.subSequence(start, end).toString)}. If {@cod [all...] |
PrintWriter.java | 677 * Appends the character sequence {@code csq} to the target. This 678 * method works the same way as {@code PrintWriter.print(csq.toString())}. 679 * If {@code csq} is {@code null}, then the string "null" is written 682 * @param csq 687 public PrintWriter append(CharSequence csq) { 688 if (csq == null) { 689 csq = "null"; 691 append(csq, 0, csq.length()); 696 * Appends a subsequence of the character sequence {@code csq} to th [all...] |
/libcore/luni/src/main/java/java/lang/ |
Appendable.java | 49 * 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; 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} that i [all...] |
StringBuilder.java | 280 * @param csq 284 public StringBuilder append(CharSequence csq) { 285 if (csq == null) { 288 append0(csq, 0, csq.length()); 298 * @param csq 308 * the length of {@code csq}. 310 public StringBuilder append(CharSequence csq, int start, int end) { 311 append0(csq, start, end);
|
/external/guava/guava-tests/test/com/google/common/io/ |
AppendableWriterTest.java | 37 @Override public Appendable append(CharSequence csq) { 38 result.append(csq); 47 @Override public Appendable append(CharSequence csq, int start, int end) { 48 result.append(csq, start, end);
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
HtmlWhiteSpaceStripper.java | 111 public Appendable append(CharSequence csq) throws IOException { 112 return append(csq, 0, csq.length()); 116 public Appendable append(CharSequence csq, int start, int end) throws IOException { 118 append(csq.charAt(i));
|
/libcore/support/src/test/java/libcore/java/io/ |
NullPrintStream.java | 63 public PrintStream append(CharSequence csq) { return this; } 64 public PrintStream append(CharSequence csq, int start, int end) { return this; }
|
/libcore/luni/src/main/java/java/nio/ |
CharBuffer.java | 660 * Writes all chars of the given character sequence {@code csq} to the 662 * of the csq. 664 * Calling this method has the same effect as {@code append(csq.toString())}. 668 * @param csq 672 * if {@code remaining()} is less than the length of csq. 676 public CharBuffer append(CharSequence csq) { 677 if (csq != null) { 678 return put(csq.toString()); 687 * @param csq 691 * than {@code csq.length()} [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
LoggingPrintStream.java | 332 public synchronized PrintStream append(CharSequence csq) { 333 builder.append(csq); 340 CharSequence csq, int start, int end) { 341 builder.append(csq, start, end);
|
/external/guava/guava-tests/test/com/google/common/base/ |
JoinerTest.java | 166 public Appendable append(CharSequence csq) throws IOException { 170 public Appendable append(CharSequence csq, int start, int end) throws IOException {
|
/cts/tools/signature-tools/spec/ |
android.spec | [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
FormatterTest.java | 115 public Appendable append(CharSequence csq) throws IOException { 117 data.append(csq); 125 public Appendable append(CharSequence csq, int start, int end) 128 data.append(csq, start, end); [all...] |
/prebuilts/sdk/10/ |
android.jar | |
/prebuilts/sdk/11/ |
android.jar | |
/prebuilts/sdk/13/ |
android.jar | |
/prebuilts/sdk/5/ |
android.jar | |
/prebuilts/sdk/7/ |
android.jar | |
/prebuilts/sdk/8/ |
android.jar | |
/prebuilts/sdk/9/ |
android.jar | |
/prebuilts/sdk/16/ |
android.jar | |
/prebuilts/sdk/6/ |
android.jar | |
/prebuilt/common/ecj/ |
ecj.jar | |