/libcore/ojluni/src/main/java/java/lang/ |
D | Appendable.java | 51 public interface Appendable { interface 71 Appendable append(CharSequence csq) throws IOException; in append() 107 Appendable append(CharSequence csq, int start, int end) throws IOException; in append() 120 Appendable append(char c) throws IOException; in append()
|
D | AbstractStringBuilder.java | 57 abstract class AbstractStringBuilder implements Appendable, CharSequence {
|
/libcore/ojluni/src/test/java/time/test/java/time/format/ |
D | MockIOExceptionAppendable.java | 67 public class MockIOExceptionAppendable implements Appendable { 69 public Appendable append(CharSequence csq) throws IOException { in append() 73 public Appendable append(char c) throws IOException { in append() 77 public Appendable append(CharSequence csq, int start, int end) in append()
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/ |
D | Appendable.annotated.java | 32 public interface Appendable { interface 34 @libcore.util.NonNull public java.lang.Appendable append(@libcore.util.Nullable java.lang.CharSeque… in append() 36 @libcore.util.NonNull public java.lang.Appendable append(@libcore.util.Nullable java.lang.CharSeque… in append() 38 @libcore.util.NonNull public java.lang.Appendable append(char c) throws java.io.IOException; in append()
|
D | StringBuffer.annotated.java | 31 public final class StringBuffer implements java.lang.Appendable, java.lang.CharSequence, java.io.Se…
|
D | StringBuilder.annotated.java | 32 public final class StringBuilder implements java.lang.Appendable, java.lang.CharSequence, java.io.S…
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | FloatingDecimal.java | 45 public static void appendTo(double d, java.lang.Appendable buf) { in appendTo() 49 public static void appendTo(float f, java.lang.Appendable buf) { in appendTo() 301 public void appendTo(java.lang.Appendable buf) { in appendTo() 400 public void appendTo(java.lang.Appendable buf); in appendTo() 427 public void appendTo(java.lang.Appendable buf) { in appendTo()
|
/libcore/ojluni/src/main/java/java/io/ |
D | Writer.java | 51 public abstract class Writer implements Appendable, Closeable, Flushable {
|
D | PrintStream.java | 65 implements Appendable, Closeable 1239 formatter = new Formatter((Appendable) this); in format()
|
/libcore/ojluni/src/main/java/java/util/ |
D | HexFormat.java | 387 public <A extends Appendable> A formatHex(A out, byte[] bytes) { in formatHex() 407 public <A extends Appendable> A formatHex(A out, byte[] bytes, int fromIndex, int toIndex) { in formatHex() 686 public <A extends Appendable> A toHexDigits(A out, byte value) { in toHexDigits()
|
D | Formatter.java | 1941 private Appendable a; 1967 private static final Appendable nonNullAppendable(Appendable a) { in nonNullAppendable() 1975 private Formatter(Locale l, Appendable a) { in Formatter() 2014 public Formatter(Appendable a) { in Formatter() 2047 public Formatter(Appendable a, Locale l) { in Formatter() 2357 (Appendable)Objects.requireNonNull(ps)); in Formatter() 2502 public Appendable out() { in out() 3251 private void appendJustified(Appendable a, CharSequence cs) throws IOException { in appendJustified() 4160 private Appendable print(StringBuilder sb, Calendar t, char c, Locale l) 4374 private Appendable print(StringBuilder sb, TemporalAccessor t, char c,
|
/libcore/ojluni/src/test/java/util/HexFormat/ |
D | HexFormatTest.java | 619 Appendable throwingAppendable = new ThrowingAppendable(); in testIOException() 744 static class ThrowingAppendable implements Appendable { 746 public Appendable append(CharSequence csq) throws IOException { in append() 751 public Appendable append(CharSequence csq, int start, int end) throws IOException { in append() 756 public Appendable append(char c) throws IOException { in append()
|
/libcore/ojluni/annotations/hiddenapi/java/nio/ |
D | CharBuffer.java | 36 java.lang.Appendable,
|
/libcore/ojluni/src/main/java/jdk/internal/math/ |
D | FloatingDecimal.java | 88 public static void appendTo(double d, Appendable buf) { in appendTo() 97 public static void appendTo(float f, Appendable buf) { in appendTo() 140 public void appendTo(Appendable buf); in appendTo() 204 public void appendTo(Appendable buf) { in appendTo() 306 public void appendTo(Appendable buf) { in appendTo()
|
/libcore/ojluni/annotations/flagged_api/java/nio/ |
D | CharBuffer.annotated.java | 34 …Buffer implements java.lang.Comparable<java.nio.CharBuffer>, java.lang.Appendable, java.lang.CharS…
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | AbstractStringBuilder.java | 31 abstract class AbstractStringBuilder implements java.lang.Appendable, java.lang.CharSequence {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | FormatterTest.java | 64 class MockAppendable implements Appendable { 65 public Appendable append(CharSequence arg0) throws IOException { in append() 69 public Appendable append(char arg0) throws IOException { in append() 73 public Appendable append(CharSequence arg0, int arg1, int arg2) in append() 100 class MockDestination implements Appendable, Flushable { 106 public Appendable append(char c) throws IOException { in append() 116 public Appendable append(CharSequence csq) throws IOException { in append() 126 public Appendable append(CharSequence csq, int start, int end) in append() 179 Formatter f2 = new Formatter((Appendable) null); in test_ConstructorLjava_lang_Appendable() 186 Appendable sb = f2.out(); in test_ConstructorLjava_lang_Appendable()
|
/libcore/ojluni/src/main/java/java/nio/ |
D | CharBuffer.java | 274 implements Comparable<CharBuffer>, Appendable, CharSequence, Readable
|
D | X-Buffer.java.template | 274 implements Comparable<$Type$Buffer>{#if[char]?, Appendable, CharSequence, Readable} 2075 // --- Methods to support Appendable ---
|
/libcore/ojluni/src/main/java/java/time/format/ |
D | DateTimeFormatter.java | 1841 public void formatTo(TemporalAccessor temporal, Appendable appendable) { in formatTo()
|
/libcore/ojluni/src/test/java/time/tck/java/time/format/ |
D | TCKDateTimeFormatter.java | 446 test.formatTo(LocalDate.of(2008, 6, 30), (Appendable) null); in test_print_TemporalAppendable_nullAppendable()
|
/libcore/api/ |
D | current.txt | 2019 …public class PrintStream extends java.io.FilterOutputStream implements java.lang.Appendable java.i… 2303 public abstract class Writer implements java.lang.Appendable java.io.Closeable java.io.Flushable { 2327 public interface Appendable { 2328 method @NonNull public Appendable append(@Nullable CharSequence) throws java.io.IOException; 2329 …method @NonNull public Appendable append(@Nullable CharSequence, int, int) throws java.io.IOExcept… 2330 method @NonNull public Appendable append(char) throws java.io.IOException; 4199 …public final class StringBuffer implements java.lang.Appendable java.lang.CharSequence java.lang.C… 4259 …public final class StringBuilder implements java.lang.Appendable java.lang.CharSequence java.lang.… 6375 …public abstract class CharBuffer extends java.nio.Buffer implements java.lang.Appendable java.lang… 12611 method public void formatTo(java.time.temporal.TemporalAccessor, Appendable); [all …]
|
/libcore/ |
D | openjdk_java_files.bp | 117 "ojluni/src/main/java/java/lang/Appendable.java",
|
D | EXPECTED_UPSTREAM | 122 ojluni/src/main/java/java/lang/Appendable.java,jdk17u/jdk-17.0.6-ga,src/java.base/share/classes/jav…
|