Home
last modified time | relevance | path

Searched defs:append (Results 1 – 22 of 22) sorted by relevance

/libcore/luni/src/main/java/java/lang/
DAppendable.java46 Appendable append(char c) throws IOException; in append() method
61 Appendable append(CharSequence csq) throws IOException; in append() method
86 Appendable append(CharSequence csq, int start, int end) throws IOException; in append() method
DStringBuilder.java108 public StringBuilder append(boolean b) { in append() method in StringBuilder
123 public StringBuilder append(char c) { in append() method in StringBuilder
138 public StringBuilder append(int i) { in append() method in StringBuilder
153 public StringBuilder append(long l) { in append() method in StringBuilder
168 public StringBuilder append(float f) { in append() method in StringBuilder
183 public StringBuilder append(double d) { in append() method in StringBuilder
198 public StringBuilder append(Object obj) { in append() method in StringBuilder
215 public StringBuilder append(String str) { in append() method in StringBuilder
229 public StringBuilder append(StringBuffer sb) { in append() method in StringBuilder
248 public StringBuilder append(char[] chars) { in append() method in StringBuilder
[all …]
DStringBuffer.java113 public StringBuffer append(boolean b) { in append() method in StringBuffer
125 public synchronized StringBuffer append(char ch) { in append() method in StringBuffer
139 public StringBuffer append(double d) { in append() method in StringBuffer
153 public StringBuffer append(float f) { in append() method in StringBuffer
167 public StringBuffer append(int i) { in append() method in StringBuffer
181 public StringBuffer append(long l) { in append() method in StringBuffer
199 public synchronized StringBuffer append(Object obj) { in append() method in StringBuffer
218 public synchronized StringBuffer append(String string) { in append() method in StringBuffer
236 public synchronized StringBuffer append(StringBuffer sb) { in append() method in StringBuffer
256 public synchronized StringBuffer append(char[] chars) { in append() method in StringBuffer
[all …]
/libcore/luni/src/main/java/java/io/
DFileWriter.java57 public FileWriter(File file, boolean append) throws IOException { in FileWriter()
95 public FileWriter(String filename, boolean append) throws IOException { in FileWriter()
DStringWriter.java179 public StringWriter append(char c) { in append() method in StringWriter
195 public StringWriter append(CharSequence csq) { in append() method in StringWriter
225 public StringWriter append(CharSequence csq, int start, int end) { in append() method in StringWriter
DWriter.java181 public Writer append(char c) throws IOException { in append() method in Writer
198 public Writer append(CharSequence csq) throws IOException { in append() method in Writer
229 public Writer append(CharSequence csq, int start, int end) throws IOException { in append() method in Writer
DCharArrayWriter.java244 public CharArrayWriter append(char c) { in append() method in CharArrayWriter
260 public CharArrayWriter append(CharSequence csq) { in append() method in CharArrayWriter
292 public CharArrayWriter append(CharSequence csq, int start, int end) { in append() method in CharArrayWriter
DFileOutputStream.java83 public FileOutputStream(File file, boolean append) throws FileNotFoundException { in FileOutputStream()
127 public FileOutputStream(String path, boolean append) throws FileNotFoundException { in FileOutputStream()
DPrintStream.java614 public PrintStream append(char c) { in append() method in PrintStream
623 public PrintStream append(CharSequence charSequence) { in append() method in PrintStream
649 public PrintStream append(CharSequence charSequence, int start, int end) { in append() method in PrintStream
DPrintWriter.java671 public PrintWriter append(char c) { in append() method in PrintWriter
687 public PrintWriter append(CharSequence csq) { in append() method in PrintWriter
717 public PrintWriter append(CharSequence csq, int start, int end) { in append() method in PrintWriter
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DAppendable.java31 public void append(byte[] src); in append() method
DSSLEngineAppData.java43 public void append(byte[] src) { in append() method in SSLEngineAppData
DHandshakeIODataStream.java188 public void append(byte[] src) { in append() method in HandshakeIODataStream
192 private void append(byte[] src, int from, int length) { in append() method in HandshakeIODataStream
DSSLSocketInputStream.java140 public void append(byte[] src) { in append() method in SSLSocketInputStream.Adapter
/libcore/support/src/test/java/libcore/java/io/
DNullPrintStream.java62 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/luni/src/main/java/java/util/logging/
DFileHandler.java118 private boolean append; field in FileHandler
406 public FileHandler(String pattern, boolean append) throws IOException { in FileHandler()
473 public FileHandler(String pattern, int limit, int count, boolean append) throws IOException { in FileHandler()
DXMLFormatter.java131 private static void append(StringBuilder sb, int indentCount, String tag, Object value) { in append() method in XMLFormatter
/libcore/luni/src/main/java/java/nio/
DCharBuffer.java655 public CharBuffer append(char c) { in append() method in CharBuffer
676 public CharBuffer append(CharSequence csq) { in append() method in CharBuffer
703 public CharBuffer append(CharSequence csq, int start, int end) { in append() method in CharBuffer
/libcore/luni/src/main/java/org/apache/harmony/xml/
DExpatParser.java404 /*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/luni/src/main/native/
Djava_nio_charset_Charsets.cpp53 bool append(jbyte b) { in append() function in NativeUnsafeByteSequence
Dorg_apache_harmony_xml_ExpatParser.cpp1005 static void append(JNIEnv* env, jobject object, jint pointer, in append() function
/libcore/luni/src/main/java/java/text/
DSimpleDateFormat.java584 private void append(StringBuffer buffer, FieldPosition position, in append() method in SimpleDateFormat