Searched refs:write (Results 1 - 25 of 2455) sorted by relevance

1234567891011>>

/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/util/
H A DJavadocEscapeWriter.java18 * 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("&");
66 out.write(">");
68 out.write(ch);
71 public void write(char[] buf, int off, int len) throws IOException { method in class:JavadocEscapeWriter
73 write(buf[off+i]);
76 public void write(char[] buf) throws IOException { method in class:JavadocEscapeWriter
77 write(bu
80 public void write(String buf, int off, int len) throws IOException { method in class:JavadocEscapeWriter
84 public void write(String buf) throws IOException { method in class:JavadocEscapeWriter
[all...]
H A DUnicodeEscapeWriter.java18 * 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...]
/openjdk9/langtools/test/tools/javac/implicitThis/
H A DNewBeforeOuterConstructed.java16 public void write(int b) { } method in class:NewBeforeOuterConstructed.NullOutputStream
17 public void write(byte b[]) { } method in class:NewBeforeOuterConstructed.NullOutputStream
18 public void write(byte b[], int off, int len) { } method in class:NewBeforeOuterConstructed.NullOutputStream
/openjdk9/jdk/src/java.rmi/share/classes/sun/rmi/log/
H A DLogOutputStream.java18 * 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);
/openjdk9/jdk/src/java.base/share/classes/sun/net/
H A DTelnetOutputStream.java18 * 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...]
/openjdk9/hotspot/src/share/vm/logging/
H A DlogStream.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
34 inline void LogStreamBase<streamClass>::write(const char* s, size_t len) { function in class:LogStreamBase
36 _current_line.write(s, len - 1);
37 _current_line.write("\0", 1);
41 _current_line.write(s, len);
/openjdk9/jdk/test/java/io/Serializable/enum/badResolve/
H A DWrite.java16 * 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
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/marshaller/
H A DNioEscapeHandler.java18 * 2 along with this work; if not, write to the Free Software Foundation,
68 out.write("&amp;");
71 out.write("&lt;");
74 out.write("&gt;");
78 out.write("&quot;");
80 out.write('\"');
85 out.write(ch[i]);
87 out.write("&#");
88 out.write(Integer.toString(ch[i]));
89 out.write(';');
[all...]
H A DDumbEscapeHandler.java18 * 2 along with this work; if not, write to the Free Software Foundation,
52 out.write("&amp;");
55 out.write("&lt;");
58 out.write("&gt;");
62 out.write("&quot;");
64 out.write('\"');
69 out.write("&#");
70 out.write(Integer.toString(ch[i]));
71 out.write(';');
73 out.write(c
[all...]
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/txw2/output/
H A DDumbEscapeHandler.java18 * 2 along with this work; if not, write to the Free Software Foundation,
52 out.write("&amp;");
55 out.write("&lt;");
58 out.write("&gt;");
62 out.write("&quot;");
64 out.write('\"');
69 out.write("&#");
70 out.write(Integer.toString(ch[i]));
71 out.write(';');
73 out.write(c
[all...]
/openjdk9/langtools/test/jdk/jshell/
H A DHistoryUITest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
47 inputSink.write("void test1() {\nSystem.err.println(1);\n}\n");
49 inputSink.write("void test2() {\nSystem.err.println(2);\n}\n");
51 inputSink.write(CTRL_UP);
53 inputSink.write(CTRL_UP);
55 inputSink.write(CTRL_DOWN);
57 inputSink.write(ENTER);
59 inputSink.write(UP);
61 inputSink.write(UP);
63 inputSink.write(U
[all...]
H A DMergedTabShiftTabCommandTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
48 inputSink.write("1\n");
50 inputSink.write("/\011");
52 inputSink.write("\011");
56 inputSink.write("\011");
62 inputSink.write("\011");
69 inputSink.write("lis\011");
72 inputSink.write("\011");
75 inputSink.write("\011");
78 inputSink.write("\01
[all...]
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DUtfHelpper.java42 out.write(result);
47 out.write(c);
52 out.write(0x3f);
56 int write;
60 write = 0xE0;
62 write |= (ch & 0x0F);
64 out.write(write);
65 write = 0x80;
68 write
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/io/
H A DFilterWriter.java18 * 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);
82 public void write(char cbuf[], int off, int len) throws IOException { method in class:FilterWriter
83 out.write(cbuf, off, len);
100 public void write(String str, int off, int len) throws IOException { method in class:FilterWriter
101 out.write(str, off, len);
H A DObjectOutput.java18 * 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 DOutputStream.java18 * 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...]
H A DWriter.java18 * 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().
106 public void write(int c) throws IOException { method in class:Writer
112 write(writeBuffer, 0, 1);
125 public void write(char cbuf[]) throws IOException { method in class:Writer
126 write(cbuf, 0, cbuf.length);
139 * Number of characters to write
150 public abstract void write(char cbuf[], int off, int len) throws IOException; method in class:Writer
161 public void write(String str) throws IOException { method in class:Writer
162 write(st
191 public void write(String str, int off, int len) throws IOException { method in class:Writer
[all...]
/openjdk9/jdk/test/java/io/OutputStreamWriter/
H A DBoundsCheck.java16 * 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);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DQPEncoderStream.java18 * 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.
85 public void write(byte[] b, int off, int len) throws IOException { method in class:QPEncoderStream
87 write(b[off + i]);
96 public void write(byte[] b) throws IOException { method in class:QPEncoderStream
97 write(b, 0, b.length);
106 public void write(int c) throws IOException { method in class:QPEncoderStream
160 out.write('\r');
161 out.write('\
[all...]
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInputDebugger.java196 this.writer.write(HTMLPrefix);
203 this.writer.write(HTMLSuffix);
208 this.writer.write(HTMLIncludePrefix);
210 this.writer.write(HTMLExcludePrefix);
216 this.writer.write("\n");
222 this.writer.write("\n");
225 this.writer.write(HTMLIncludeOrExcludeSuffix);
230 this.writer.write(HTMLIncludePrefix);
232 this.writer.write(HTMLExcludePrefix);
238 this.writer.write("\
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/http/
H A DPosterOutputStream.java18 * 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.
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/util/
H A DNullStream.java18 * 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
/openjdk9/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLWriter.java18 * 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);
53 public void write(char[] cbuf, int off, int len) throws IOException { method in class:XMLWriter
57 inner.write("&gt;");
59 inner.write("&lt;");
61 inner.write("&amp;");
63 inner.write(c);
79 inner.write("</" + elementStack.pop() + ">\n");
83 inner.write("<"
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/
H A DWriterChain.java34 * write(int val)
35 * write(char[] chars)
36 * write(char[] chars, int start, int count)
37 * write(String chars)
38 * write(String chars, int start, int count)
55 public void write(int val) throws IOException; method in interface:WriterChain
57 public void write(char[] chars) throws IOException; method in interface:WriterChain
59 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain
61 public void write(String chars) throws IOException; method in interface:WriterChain
63 public void write(Strin method in interface:WriterChain
[all...]
/openjdk9/jdk/test/java/io/PipedInputStream/
H A DClosedWriter.java16 * 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);

Completed in 345 milliseconds

1234567891011>>