/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/ |
H A D | JavadocEscapeWriter.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 58 public void write(int ch) throws IOException { method in class:JavadocEscapeWriter 60 out.write("<"); 63 out.write("&"); 65 out.write(ch); 68 public void write(char[] buf, int off, int len) throws IOException { method in class:JavadocEscapeWriter 70 write(buf[off+i]); 73 public void write(char[] buf) throws IOException { method in class:JavadocEscapeWriter 74 write(buf,0,buf.length); 77 public void write(Strin method in class:JavadocEscapeWriter 81 public void write(String buf) throws IOException { method in class:JavadocEscapeWriter [all...] |
H A D | UnicodeEscapeWriter.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 48 public final void write(int ch) throws IOException { method in class:UnicodeEscapeWriter 49 if(!requireEscaping(ch)) out.write(ch); 52 out.write("\\u"); 55 out.write('0'); 56 out.write(s); 73 public final void write(char[] buf, int off, int len) throws IOException { method in class:UnicodeEscapeWriter 75 write(buf[off+i]); 78 public final void write(char[] buf) throws IOException { method in class:UnicodeEscapeWriter 79 write(bu 82 public final void write(String buf, int off, int len) throws IOException { method in class:UnicodeEscapeWriter 86 public final void write(String buf) throws IOException { method in class:UnicodeEscapeWriter [all...] |
/openjdk7/langtools/test/tools/javac/implicitThis/ |
H A D | NewBeforeOuterConstructed.java | 16 * 2 along with this work; if not, write to the Free Software Foundation, 39 public void write(int b) { } method in class:NewBeforeOuterConstructed.NullOutputStream 40 public void write(byte b[]) { } method in class:NewBeforeOuterConstructed.NullOutputStream 41 public void write(byte b[], int off, int len) { } method in class:NewBeforeOuterConstructed.NullOutputStream
|
/openjdk7/jdk/src/share/classes/sun/rmi/log/ |
H A D | LogOutputStream.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 51 public void write(int b) throws IOException { method in class:LogOutputStream 52 raf.write(b); 61 public void write(byte b[]) throws IOException { method in class:LogOutputStream 62 raf.write(b); 72 public void write(byte b[], int off, int len) throws IOException { method in class:LogOutputStream 73 raf.write(b, off, len);
|
/openjdk7/jdk/src/share/classes/sun/net/ |
H A D | TelnetOutputStream.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 32 * This class overrides write to do CRLF processing as specified in 96 public void write(int c) throws IOException { method in class:TelnetOutputStream 98 super.write(c); 104 super.write(0); 105 super.write(c); 110 super.write('\r'); 111 super.write('\n'); 118 super.write('\r'); 122 super.write( 130 public void write(byte bytes[], int off, int length) throws IOException { method in class:TelnetOutputStream [all...] |
/openjdk7/jdk/test/java/io/Serializable/enum/badResolve/ |
H A D | Write.java | 16 * 2 along with this work; if not, write to the Free Software Foundation, 47 write(EnumToNonEnum.class, "0.ser"); 48 write(NonEnumToEnum.class, "1.ser"); 49 write(EnumToNonEnum.foo, "2.ser"); 50 write(new NonEnumToEnum(), "3.ser"); 53 static void write(Object obj, String filename) throws Exception { method in class:Write
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/ |
H A D | DumbEscapeHandler.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 52 out.write("&"); 55 out.write("<"); 58 out.write(">"); 62 out.write("""); 64 out.write('\"'); 69 out.write("&#"); 70 out.write(Integer.toString(ch[i])); 71 out.write(';'); 73 out.write(c [all...] |
H A D | NioEscapeHandler.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 68 out.write("&"); 71 out.write("<"); 74 out.write(">"); 78 out.write("""); 80 out.write('\"'); 85 out.write(ch[i]); 87 out.write("&#"); 88 out.write(Integer.toString(ch[i])); 89 out.write(';'); [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/ |
H A D | DumbEscapeHandler.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 52 out.write("&"); 55 out.write("<"); 58 out.write(">"); 62 out.write("""); 64 out.write('\"'); 69 out.write("&#"); 70 out.write(Integer.toString(ch[i])); 71 out.write(';'); 73 out.write(c [all...] |
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/ |
H A D | UtfHelpper.java | 16 out.write(result); 22 out.write(c); 27 out.write(0x3f); 31 int write; 35 write=0xE0; 37 write |= ( ch & 0x0F); 39 out.write(write); 40 write=0x80; 43 write [all...] |
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/ |
H A D | MacOutputStream.java | 42 public void write(byte[] arg0) { method in class:MacOutputStream 43 super.write(arg0, 0, arg0.length); 48 public void write(int arg0) { method in class:MacOutputStream 49 super.write(arg0); 54 public void write(byte[] arg0, int arg1, int arg2) { method in class:MacOutputStream 55 super.write(arg0, arg1, arg2);
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | FilterWriter.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 64 public void write(int c) throws IOException { method in class:FilterWriter 65 out.write(c); 77 public void write(char cbuf[], int off, int len) throws IOException { method in class:FilterWriter 78 out.write(cbuf, off, len); 90 public void write(String str, int off, int len) throws IOException { method in class:FilterWriter 91 out.write(str, off, len);
|
H A D | Writer.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 31 * subclass must implement are write(char[], int, int), flush(), and close(). 107 public void write(int c) throws IOException { method in class:Writer 113 write(writeBuffer, 0, 1); 126 public void write(char cbuf[]) throws IOException { method in class:Writer 127 write(cbuf, 0, cbuf.length); 140 * Number of characters to write 145 abstract public void write(char cbuf[], int off, int len) throws IOException; method in class:Writer 156 public void write(String str) throws IOException { method in class:Writer 157 write(st 180 public void write(String str, int off, int len) throws IOException { method in class:Writer [all...] |
H A D | ObjectOutput.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 57 public void write(int b) throws IOException; method in interface:ObjectOutput 65 public void write(byte b[]) throws IOException; method in interface:ObjectOutput 74 public void write(byte b[], int off, int len) throws IOException; method in interface:ObjectOutput 77 * Flushes the stream. This will write any buffered
|
H A D | OutputStream.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 43 * @see java.io.OutputStream#write(int) 49 * contract for <code>write</code> is that one byte is written 62 public abstract void write(int b) throws IOException; method in class:OutputStream 66 * to this output stream. The general contract for <code>write(b)</code> 68 * <code>write(b, 0, b.length)</code>. 72 * @see java.io.OutputStream#write(byte[], int, int) 74 public void write(byte b[]) throws IOException { method in class:OutputStream 75 write(b, 0, b.length); 81 * The general contract for <code>write( 106 public void write(byte b[], int off, int len) throws IOException { method in class:OutputStream [all...] |
/openjdk7/jdk/test/java/io/OutputStreamWriter/ |
H A D | BoundsCheck.java | 16 * 2 along with this work; if not, write to the Free Software Foundation, 28 * write(String str, int off, int len) throws 43 osw.write(data, -3, 5); 48 osw.write(data, 3, -5); 53 osw.write(data, 3, 75); 58 osw.write(cdata, -3, 5); 63 osw.write(cdata, 3, -5); 68 osw.write(cdata, 3, 75);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/ |
H A D | QPEncoderStream.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 39 * any output stream and write bytes into this filter. The Encoding 81 * @param len the number of bytes to write. 84 public void write(byte[] b, int off, int len) throws IOException { method in class:QPEncoderStream 86 write(b[off + i]); 94 public void write(byte[] b) throws IOException { method in class:QPEncoderStream 95 write(b, 0, b.length); 103 public void write(int c) throws IOException { method in class:QPEncoderStream 155 out.write('\r'); 156 out.write('\ [all...] |
/openjdk7/jdk/src/share/classes/sun/net/www/http/ |
H A D | PosterOutputStream.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 36 * when close() is called, it is no longer possible to write 59 public synchronized void write(int b) { method in class:PosterOutputStream 63 super.write (b); 72 * @param len the number of bytes to write. 74 public synchronized void write(byte b[], int off, int len) { method in class:PosterOutputStream 78 super.write (b, off, len); 98 * After close() has been called, it is no longer possible to write 99 * to this stream. Further calls to write will have no effect.
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/ |
H A D | NullStream.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 39 public void write(int b) throws IOException { method in class:NullStream 48 public void write(byte[] b, int off, int len) throws IOException { method in class:NullStream 51 public void write(byte[] b) throws IOException { method in class:NullStream
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | BASE64Encoder.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 90 outStream.write(pem_array[(a >>> 2) & 0x3F]); 91 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]); 92 outStream.write('='); 93 outStream.write('='); 98 outStream.write(pem_array[(a >>> 2) & 0x3F]); 99 outStream.write(pem_array[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]); 100 outStream.write(pem_array[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]); 101 outStream.write('='); 106 outStream.write(pem_arra [all...] |
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/ |
H A D | XMLWriter.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 48 public void write(char[] arr) throws IOException { method in class:XMLWriter 49 write(arr, 0, arr.length); 52 public void write(char[] cbuf, int off, int len) throws IOException { method in class:XMLWriter 56 inner.write(">"); 58 inner.write("<"); 60 inner.write("&"); 62 inner.write(c); 76 inner.write("</" + elementStack.pop() + ">\n"); 80 inner.write("<" [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
H A D | WriterChain.java | 35 * write(int val) 36 * write(char[] chars) 37 * write(char[] chars, int start, int count) 38 * write(String chars) 39 * write(String chars, int start, int count) 56 public void write(int val) throws IOException; method in interface:WriterChain 58 public void write(char[] chars) throws IOException; method in interface:WriterChain 60 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain 62 public void write(String chars) throws IOException; method in interface:WriterChain 64 public void write(Strin method in interface:WriterChain [all...] |
/openjdk7/jdk/test/java/io/PipedInputStream/ |
H A D | ClosedWriter.java | 16 * 2 along with this work; if not, write to the Free Software Foundation, 40 os.write(0); 41 os.write(0); 42 os.write(0); 43 os.write(0); 44 os.write(0);
|
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/ |
H A D | HexOutputStream.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 61 * param b The byte to write out. 64 public synchronized void write(int b) throws IOException { method in class:HexOutputStream 65 writer.write(hex[((b >> 4) & 0xF)]); 66 writer.write(hex[((b >> 0) & 0xF)]); 69 public synchronized void write(byte[] b) throws IOException { method in class:HexOutputStream 70 write(b, 0, b.length); 73 public synchronized void write(byte[] b, int off, int len) method in class:HexOutputStream 77 write(b[off + i]);
|
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/ |
H A D | N2AFilter.java | 18 * 2 along with this work; if not, write to the Free Software Foundation, 43 public void write(char b) throws IOException { method in class:N2AFilter 46 write(buf, 0, 1); 49 public void write(char[] buf, int off, int len) throws IOException { method in class:N2AFilter 56 // write \udddd 57 out.write('\\'); 58 out.write('u'); 68 out.write(hex4.charAt(3 - j)); 71 out.write(buf[i]);
|