Home
last modified time | relevance | path

Searched refs:Appendable (Results 1 – 24 of 24) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DAppendable.java51 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()
DAbstractStringBuilder.java57 abstract class AbstractStringBuilder implements Appendable, CharSequence {
/libcore/ojluni/src/test/java/time/test/java/time/format/
DMockIOExceptionAppendable.java67 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/
DAppendable.annotated.java32 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()
DStringBuffer.annotated.java31 public final class StringBuffer implements java.lang.Appendable, java.lang.CharSequence, java.io.Se…
DStringBuilder.annotated.java32 public final class StringBuilder implements java.lang.Appendable, java.lang.CharSequence, java.io.S…
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DFloatingDecimal.java45 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/
DWriter.java51 public abstract class Writer implements Appendable, Closeable, Flushable {
DPrintStream.java65 implements Appendable, Closeable
1239 formatter = new Formatter((Appendable) this); in format()
/libcore/ojluni/src/main/java/java/util/
DHexFormat.java387 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()
DFormatter.java1941 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/
DHexFormatTest.java619 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/
DCharBuffer.java36 java.lang.Appendable,
/libcore/ojluni/src/main/java/jdk/internal/math/
DFloatingDecimal.java88 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/
DCharBuffer.annotated.java34 …Buffer implements java.lang.Comparable<java.nio.CharBuffer>, java.lang.Appendable, java.lang.CharS…
/libcore/ojluni/annotations/hiddenapi/java/lang/
DAbstractStringBuilder.java31 abstract class AbstractStringBuilder implements java.lang.Appendable, java.lang.CharSequence {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DFormatterTest.java64 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/
DCharBuffer.java274 implements Comparable<CharBuffer>, Appendable, CharSequence, Readable
DX-Buffer.java.template274 implements Comparable<$Type$Buffer>{#if[char]?, Appendable, CharSequence, Readable}
2075 // --- Methods to support Appendable ---
/libcore/ojluni/src/main/java/java/time/format/
DDateTimeFormatter.java1841 public void formatTo(TemporalAccessor temporal, Appendable appendable) { in formatTo()
/libcore/ojluni/src/test/java/time/tck/java/time/format/
DTCKDateTimeFormatter.java446 test.formatTo(LocalDate.of(2008, 6, 30), (Appendable) null); in test_print_TemporalAppendable_nullAppendable()
/libcore/api/
Dcurrent.txt2019 …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/
Dopenjdk_java_files.bp117 "ojluni/src/main/java/java/lang/Appendable.java",
DEXPECTED_UPSTREAM122 ojluni/src/main/java/java/lang/Appendable.java,jdk17u/jdk-17.0.6-ga,src/java.base/share/classes/jav…