/libcore/ojluni/src/test/java/time/test/java/time/format/ |
D | MockIOExceptionAppendable.java | 69 public Appendable append(CharSequence csq) throws IOException { in append() method in MockIOExceptionAppendable 73 public Appendable append(char c) throws IOException { in append() method in MockIOExceptionAppendable 77 public Appendable append(CharSequence csq, int start, int end) in append() method in MockIOExceptionAppendable
|
/libcore/ojluni/src/main/java/java/lang/ |
D | Appendable.java | 71 Appendable append(CharSequence csq) throws IOException; in append() method 107 Appendable append(CharSequence csq, int start, int end) throws IOException; in append() method 120 Appendable append(char c) throws IOException; in append() method
|
D | StringBuilder.java | 131 public StringBuilder append(Object obj) { in append() method in StringBuilder 136 public StringBuilder append(String str) { in append() method in StringBuilder 160 public StringBuilder append(StringBuffer sb) { in append() method in StringBuilder 166 public StringBuilder append(CharSequence s) { in append() method in StringBuilder 175 public StringBuilder append(CharSequence s, int start, int end) { in append() method in StringBuilder 181 public StringBuilder append(char[] str) { in append() method in StringBuilder 190 public StringBuilder append(char[] str, int offset, int len) { in append() method in StringBuilder 196 public StringBuilder append(boolean b) { in append() method in StringBuilder 202 public StringBuilder append(char c) { in append() method in StringBuilder 208 public StringBuilder append(int i) { in append() method in StringBuilder [all …]
|
D | StringBuffer.java | 261 public synchronized StringBuffer append(Object obj) { in append() method in StringBuffer 268 public synchronized StringBuffer append(String str) { in append() method in StringBuffer 298 public synchronized StringBuffer append(StringBuffer sb) { in append() method in StringBuffer 308 synchronized StringBuffer append(AbstractStringBuilder asb) { in append() method in StringBuffer 336 public synchronized StringBuffer append(CharSequence s) { in append() method in StringBuffer 347 public synchronized StringBuffer append(CharSequence s, int start, int end) in append() method in StringBuffer 355 public synchronized StringBuffer append(char[] str) { in append() method in StringBuffer 365 public synchronized StringBuffer append(char[] str, int offset, int len) { in append() method in StringBuffer 372 public synchronized StringBuffer append(boolean b) { in append() method in StringBuffer 379 public synchronized StringBuffer append(char c) { in append() method in StringBuffer [all …]
|
D | AbstractStringBuilder.java | 424 public AbstractStringBuilder append(Object obj) { in append() method in AbstractStringBuilder 447 public AbstractStringBuilder append(String str) { in append() method in AbstractStringBuilder 459 public AbstractStringBuilder append(StringBuffer sb) { in append() method in AbstractStringBuilder 473 AbstractStringBuilder append(AbstractStringBuilder asb) { in append() method in AbstractStringBuilder 486 public AbstractStringBuilder append(CharSequence s) { in append() method in AbstractStringBuilder 540 public AbstractStringBuilder append(CharSequence s, int start, int end) { in append() method in AbstractStringBuilder 572 public AbstractStringBuilder append(char[] str) { in append() method in AbstractStringBuilder 603 public AbstractStringBuilder append(char str[], int offset, int len) { in append() method in AbstractStringBuilder 624 public AbstractStringBuilder append(boolean b) { in append() method in AbstractStringBuilder 659 public AbstractStringBuilder append(char c) { in append() method in AbstractStringBuilder [all …]
|
D | ProcessBuilder.java | 543 boolean append() { in append() method in ProcessBuilder.Redirect 596 boolean append() { return false; } in to() method
|
/libcore/ojluni/src/main/java/java/io/ |
D | FileOutputStream.java | 68 private final boolean append; field in FileOutputStream 139 public FileOutputStream(String name, boolean append) in FileOutputStream() 203 public FileOutputStream(File file, boolean append) in FileOutputStream() 276 private native void open0(String name, boolean append) in open0() 285 private void open(String name, boolean append) in open()
|
D | FileWriter.java | 77 public FileWriter(String fileName, boolean append) throws IOException { in FileWriter() 106 public FileWriter(File file, boolean append) throws IOException { in FileWriter()
|
D | StringWriter.java | 139 public StringWriter append(CharSequence csq) { in append() method in StringWriter 179 public StringWriter append(CharSequence csq, int start, int end) { in append() method in StringWriter 201 public StringWriter append(char c) { in append() method in StringWriter
|
D | Writer.java | 223 public Writer append(CharSequence csq) throws IOException { in append() method in Writer 267 public Writer append(CharSequence csq, int start, int end) throws IOException { in append() method in Writer 292 public Writer append(char c) throws IOException { in append() method in Writer
|
D | CharArrayWriter.java | 165 public CharArrayWriter append(CharSequence csq) { in append() method in CharArrayWriter 203 public CharArrayWriter append(CharSequence csq, int start, int end) { in append() method in CharArrayWriter 225 public CharArrayWriter append(char c) { in append() method in CharArrayWriter
|
D | PrintWriter.java | 1000 public PrintWriter append(CharSequence csq) { in append() method in PrintWriter 1040 public PrintWriter append(CharSequence csq, int start, int end) { in append() method in PrintWriter 1062 public PrintWriter append(char c) { in append() method in PrintWriter
|
D | PrintStream.java | 1079 public PrintStream append(CharSequence csq) { in append() method in PrintStream 1120 public PrintStream append(CharSequence csq, int start, int end) { in append() method in PrintStream 1142 public PrintStream append(char c) { in append() method in PrintStream
|
/libcore/ojluni/src/main/java/java/util/logging/ |
D | FileHandler.java | 153 private boolean append; field in FileHandler 206 private void open(File fname, boolean append) throws IOException { in open() 316 public FileHandler(String pattern, boolean append) throws IOException, in FileHandler() 392 public FileHandler(String pattern, int limit, int count, boolean append) in FileHandler()
|
/libcore/support/src/test/java/libcore/java/io/ |
D | NullPrintStream.java | 62 public PrintStream append(char c) { return this; } in append() method in NullPrintStream 63 public PrintStream append(CharSequence csq) { return this; } in append() method in NullPrintStream 64 public PrintStream append(CharSequence csq, int start, int end) { return this; } in append() method in NullPrintStream
|
/libcore/ojluni/src/main/native/ |
D | FileOutputStream_md.c | 56 jstring path, jboolean append) { in FileOutputStream_open0()
|
D | io_util.c | 131 writeSingle(JNIEnv *env, jobject this, jint byte, jboolean append, jfieldID fid) { in writeSingle() 154 jint off, jint len, jboolean append, jfieldID fid) in writeBytes()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | WriterTesterTest.java | 72 private final boolean append; field in WriterTesterTest.FileWriterCharSinkTester 75 public FileWriterCharSinkTester(boolean append) { in FileWriterCharSinkTester()
|
D | OutputStreamTesterTest.java | 77 private final boolean append; field in OutputStreamTesterTest.FileOutputStreamSinkTester 80 private FileOutputStreamSinkTester(boolean append) { in FileOutputStreamSinkTester()
|
/libcore/xml/src/main/java/org/kxml2/io/ |
D | KXmlSerializer.java | 51 private void append(char c) throws IOException { in append() method in KXmlSerializer 58 private void append(String str, int i, int length) throws IOException { in append() method in KXmlSerializer 74 private void append(String str) throws IOException { in append() method in KXmlSerializer
|
/libcore/ojluni/src/main/java/java/nio/ |
D | CharBuffer.java | 991 public CharBuffer append(CharSequence csq) { in append() method in CharBuffer 1023 public CharBuffer append(CharSequence csq, int start, int end) { in append() method in CharBuffer 1044 public CharBuffer append(char c) { in append() method in CharBuffer
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | FormatterTest.java | 64 public Appendable append(CharSequence arg0) throws IOException { in append() method in FormatterTest.MockAppendable 68 public Appendable append(char arg0) throws IOException { in append() method in FormatterTest.MockAppendable 72 public Appendable append(CharSequence arg0, int arg1, int arg2) in append() method in FormatterTest.MockAppendable 105 public Appendable append(char c) throws IOException { in append() method in FormatterTest.MockDestination 115 public Appendable append(CharSequence csq) throws IOException { in append() method in FormatterTest.MockDestination 125 public Appendable append(CharSequence csq, int start, int end) in append() method in FormatterTest.MockDestination
|
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
D | ExpatParser.java | 404 /*package*/ void append(String xml) throws SAXException { in append() method in ExpatParser 424 /*package*/ void append(char[] xml, int offset, int length) in append() method in ExpatParser 443 /*package*/ void append(byte[] xml) throws SAXException { in append() method in ExpatParser 456 /*package*/ void append(byte[] xml, int offset, int length) in append() method in ExpatParser
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | UnixChannelFactory.java | 59 boolean append; field in UnixChannelFactory.Flags
|
/libcore/ojluni/src/main/java/java/nio/file/attribute/ |
D | FileTime.java | 376 private StringBuilder append(StringBuilder sb, int w, int d) { in append() method in FileTime
|