/openjdk7/langtools/test/tools/javac/mixedTarget/ |
H A D | ExtendCovariant2.java | 35 * java.io.PrintStream java.io.PrintStream.append(char) 39 * java.lang.Appendable java.lang.Appendable.append(char) 48 public java.io.PrintStream append(char c) { method in class:ExtendCovariant2
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | FileWriter.java | 68 * indicating whether or not to append the data written. 71 * @param append boolean if <code>true</code>, then data will be written 77 public FileWriter(String fileName, boolean append) throws IOException { argument 78 super(new FileOutputStream(fileName, append)); 99 * @param append if <code>true</code>, then bytes will be written 106 public FileWriter(File file, boolean append) throws IOException { argument 107 super(new FileOutputStream(file, append));
|
H A D | StringWriter.java | 77 buf.append((char) c); 94 buf.append(cbuf, off, len); 101 buf.append(str); 112 buf.append(str.substring(off, off + len)); 118 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 131 * The character sequence to append. If <tt>csq</tt> is 139 public StringWriter append(CharSequence csq) { method in class:StringWriter 150 * <p> An invocation of this method of the form <tt>out.append(csq, start, 179 public StringWriter append(CharSequence csq, int start, int end) { method in class:StringWriter 188 * <p> An invocation of this method of the form <tt>out.append( 201 public StringWriter append(char c) { method in class:StringWriter [all...] |
H A D | Writer.java | 199 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 212 * The character sequence to append. If <tt>csq</tt> is 223 public Writer append(CharSequence csq) throws IOException { method in class:Writer 235 * <p> An invocation of this method of the form <tt>out.append(csq, start, 267 public Writer append(CharSequence csq, int start, int end) throws IOException { method in class:Writer 276 * <p> An invocation of this method of the form <tt>out.append(c)</tt> 283 * The 16-bit character to append 292 public Writer append(char c) throws IOException { method in class:Writer
|
H A D | CharArrayWriter.java | 144 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 157 * The character sequence to append. If <tt>csq</tt> is 165 public CharArrayWriter append(CharSequence csq) { method in class:CharArrayWriter 174 * <p> An invocation of this method of the form <tt>out.append(csq, start, 203 public CharArrayWriter append(CharSequence csq, int start, int end) { method in class:CharArrayWriter 212 * <p> An invocation of this method of the form <tt>out.append(c)</tt> 219 * The 16-bit character to append 225 public CharArrayWriter append(char c) { method in class:CharArrayWriter
|
H A D | FileOutputStream.java | 67 * True if the file is opened for append. 69 private final boolean append; field in class:FileOutputStream 128 * @param append if <code>true</code>, then bytes will be written 139 public FileOutputStream(String name, boolean append) argument 142 this(name != null ? new File(name) : null, append); 190 * @param append if <code>true</code>, then bytes will be written 203 public FileOutputStream(File file, boolean append) argument 218 this.append = append; 221 open(name, append); 272 open(String name, boolean append) argument 282 write(int b, boolean append) argument 311 writeBytes(byte b[], int off, int len, boolean append) argument [all...] |
/openjdk7/jdk/src/share/native/sun/font/layout/ |
H A D | LEInsertionList.h | 191 * to be first on the list, we need to append the 196 le_bool append; member in class:LEInsertionList
|
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | Appendable.java | 59 * the subsequence to append is defined by the buffer's position and limit. 62 * The character sequence to append. If <tt>csq</tt> is 71 Appendable append(CharSequence csq) throws IOException; method in interface:Appendable 77 * <p> An invocation of this method of the form <tt>out.append(csq, start, 82 * out.append(csq.subSequence(start, end)) </pre> 107 Appendable append(CharSequence csq, int start, int end) throws IOException; method in interface:Appendable 113 * The character to append 120 Appendable append(char c) throws IOException; method in interface:Appendable
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
H A D | JavadocTodo.java | 50 public void append(Env<AttrContext> e) { method in class:JavadocTodo
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/ |
H A D | OutputBuffer.java | 32 public OutputBuffer append(char ch); method in interface:OutputBuffer 33 public OutputBuffer append(String s); method in interface:OutputBuffer 34 public OutputBuffer append(char[] s, int from, int to); method in interface:OutputBuffer
|
H A D | StringOutputBuffer.java | 41 public OutputBuffer append(String s) { method in class:StringOutputBuffer 42 _buffer.append(s); 46 public OutputBuffer append(char[] s, int from, int to) { method in class:StringOutputBuffer 47 _buffer.append(s, from, to); 51 public OutputBuffer append(char ch) { method in class:StringOutputBuffer 52 _buffer.append(ch);
|
H A D | WriterOutputBuffer.java | 68 public OutputBuffer append(String s) { method in class:WriterOutputBuffer 78 public OutputBuffer append(char[] s, int from, int to) { method in class:WriterOutputBuffer 88 public OutputBuffer append(char ch) { method in class:WriterOutputBuffer
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/ |
H A D | JCommentPart.java | 42 * Values can be added through the various append methods one by one or in a bulk. 56 public JCommentPart append(Object o) { method in class:JCommentPart
|
/openjdk7/jdk/src/solaris/native/java/io/ |
H A D | FileOutputStream_md.c | 57 jstring path, jboolean append) { 59 O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC)); 63 Java_java_io_FileOutputStream_write(JNIEnv *env, jobject this, jint byte, jboolean append) { argument 64 writeSingle(env, this, byte, append, fos_fd); 69 jobject this, jbyteArray bytes, jint off, jint len, jboolean append) { 70 writeBytes(env, this, bytes, off, len, append, fos_fd); 56 Java_java_io_FileOutputStream_open(JNIEnv *env, jobject this, jstring path, jboolean append) argument 68 Java_java_io_FileOutputStream_writeBytes(JNIEnv *env, jobject this, jbyteArray bytes, jint off, jint len, jboolean append) argument
|
/openjdk7/jdk/src/windows/native/java/io/ |
H A D | FileOutputStream_md.c | 58 jstring path, jboolean append) { 60 O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC)); 64 Java_java_io_FileOutputStream_write(JNIEnv *env, jobject this, jint byte, jboolean append) { argument 65 writeSingle(env, this, byte, append, fos_fd); 70 jobject this, jbyteArray bytes, jint off, jint len, jboolean append) 72 writeBytes(env, this, bytes, off, len, append, fos_fd); 57 Java_java_io_FileOutputStream_open(JNIEnv *env, jobject this, jstring path, jboolean append) argument 69 Java_java_io_FileOutputStream_writeBytes(JNIEnv *env, jobject this, jbyteArray bytes, jint off, jint len, jboolean append) argument
|
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/ |
H A D | LinkOutputImpl.java | 53 public void append(Object o) { method in class:LinkOutputImpl 54 output.append(o instanceof String ?
|
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/links/ |
H A D | LinkOutput.java | 39 * @param o the object to append. 41 public void append(Object o); method in interface:LinkOutput
|
/openjdk7/jdk/test/java/util/Formatter/ |
H A D | Close.java | 39 public Appendable append(CharSequence csq) { return null; } method in class:Close.C 40 public Appendable append(char c) { return null; } method in class:Close.C 41 public Appendable append(CharSequence csq, int s, int e) { method in class:Close.C 51 public Appendable append(CharSequence csq) { return null; } method in class:Close.NC 52 public Appendable append(char c) { return null; } method in class:Close.NC 53 public Appendable append(CharSequence csq, int s, int e) { method in class:Close.NC
|
H A D | Flush.java | 40 public Appendable append(CharSequence csq) { return null; } method in class:Flush.F 41 public Appendable append(char c) { return null; } method in class:Flush.F 42 public Appendable append(CharSequence csq, int s, int e) { method in class:Flush.F 53 public Appendable append(CharSequence csq) { return null; } method in class:Flush.NF 54 public Appendable append(char c) { return null; } method in class:Flush.NF 55 public Appendable append(CharSequence csq, int s, int e) { method in class:Flush.NF
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | FlowList.java | 61 public FlowList append(FlowList right) { method in class:FlowList
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/ |
H A D | XMLStringBuffer.java | 124 append(c); 130 append(s); 136 append(ch, offset, length); 142 append(s); 156 * append 160 public void append(char c) { method in class:XMLStringBuffer 172 } // append(char) 175 * append 179 public void append(String s) { method in class:XMLStringBuffer 193 } // append(Strin 202 public void append(char[] ch, int offset, int length) { method in class:XMLStringBuffer 225 public void append(XMLString s) { method in class:XMLStringBuffer [all...] |
/openjdk7/jdk/src/share/classes/java/awt/print/ |
H A D | Book.java | 136 public void append(Printable painter, PageFormat page) { method in class:Book 153 public void append(Printable painter, PageFormat page, int numPages) { method in class:Book
|
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/ |
H A D | OutputViewer.java | 53 private static void append(String s) { method in class:OutputViewer 74 ta.append(s); 80 append(s+"\n");
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/ |
H A D | ByteBuffer.java | 168 public void append(byte value) method in class:ByteBuffer 174 public void append( int value ) method in class:ByteBuffer 190 public void append( String value ) method in class:ByteBuffer
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/ |
H A D | ObjectWriter.java | 52 public void append( boolean arg ) { result.append( arg ) ; } method in class:ObjectWriter 54 public void append( char arg ) { result.append( arg ) ; } method in class:ObjectWriter 56 public void append( short arg ) { result.append( arg ) ; } method in class:ObjectWriter 58 public void append( int arg ) { result.append( arg ) ; } method in class:ObjectWriter 60 public void append( long arg ) { result.append( ar method in class:ObjectWriter 62 public void append( float arg ) { result.append( arg ) ; } method in class:ObjectWriter 64 public void append( double arg ) { result.append( arg ) ; } method in class:ObjectWriter 66 public void append( String arg ) { result.append( arg ) ; } method in class:ObjectWriter [all...] |