Searched refs:write (Results 51 - 75 of 1678) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DXMLWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
49 * Filter to write an XML document from a SAX event stream.
53 * events and uses the information in those events to write
433 write(header);
442 write(decl);
493 write(">");
498 write('<');
499 write(qName);
510 write(' ');
512 write("xmln
898 protected final void write (char c) throws IOException { method in class:XMLWriter
906 protected final void write(String s) throws IOException { method in class:XMLWriter
[all...]
/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement2/
H A DGenerator.java16 * 2 along with this work; if not, write to the Free Software Foundation,
68 out.write("import java.util.*;\n");
69 out.write("class " + signature(e) + " {\n");
70 out.write(" public void run() {\n");
71 out.write(" Class<?> c = getClass();\n");
72 out.write(" System.out.println(\"class: \" + c);\n");
73 out.write(" System.out.println(\"superclass: \" + c.getSuperclass());\n");
74 out.write(" System.out.println(\"generic superclass: \" +c.getGenericSuperclass());\n");
75 out.write(" System.out.println(\"interfaces: \" + Arrays.asList(c.getInterfaces()));\n");
76 out.write(" Syste
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DTag.java17 * 2 along with this work; if not, write to the Free Software Foundation,
62 os.write(length);
63 os.write(tag);
64 os.write(tagLen);
66 os.write(time_offset.intValue());
69 os.write(usec_offset.intValue());
/openjdk7/langtools/test/tools/javac/diags/examples/ProcSuspiciousClassName/processors/
H A DAnnoProc.java16 * 2 along with this work; if not, write to the Free Software Foundation,
40 out.write("class HelloWorld {\n");
41 out.write(" public static void main(String[] args) {\n");
42 out.write(" System.out.println(\"Hello World!\");\n");
43 out.write(" }\n");
44 out.write("}\n");
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DNotationDeclarationImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
89 writer.write("<!NOTATION ");
90 writer.write(getName());
92 writer.write(" PUBLIC \"");
93 writer.write(fPublicId);
94 writer.write("\"");
96 writer.write(" SYSTEM");
97 writer.write(" \"");
98 writer.write(fSystemId);
99 writer.write("\"");
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DAbstractFilter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
42 * <P> A subclass should override at least <code>write(char)</code>
44 * good idea to override <code>write(String)</code> as well. The subclass'
106 this.write(buf, 0, count);
123 this.write(buf[i]);
138 public void write(int b) method in class:AbstractFilter
148 write(ch);
153 * Implements the buffer-at-a-time write method for greater
156 * <p> <strong>PENDING:</strong> Does <code>write(byte[])</code>
157 * call <code>write(byt
160 public void write(byte[] buf, int off, int len) method in class:AbstractFilter
202 public void write(String s) method in class:AbstractFilter
219 protected abstract void write(char ch) throws IOException; method in class:AbstractFilter
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DXMLWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
51 * Filter to write an XML document from a SAX event stream.
55 * events and uses the information in those events to write
445 write("<?xml version=\"1.0\""+e+" standalone=\"yes\"?>\n");
449 write(header);
473 write("/>");
476 write('\n');
514 write(">");
519 write('<');
533 write(' ');
972 private void write (char c) throws IOException { method in class:XMLWriter
980 private void write (String s) throws IOException { method in class:XMLWriter
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DUTF8XmlOutput.java18 * 2 along with this work; if not, write to the Free Software Foundation,
67 * The textBuffer could write directly to the _octetBuffer
77 /** Index in buffer to write to. */
81 * Set to true to indicate that we need to write '>'
82 * to close a start tag. Deferring the write of this char
83 * allows us to write "/>" for empty elements.
117 write(XML_DECL);
121 textBuffer.write(this);
136 write('>');
144 write('<');
377 public final void write(int i) throws IOException { method in class:UTF8XmlOutput
387 protected final void write(byte[] b) throws IOException { method in class:UTF8XmlOutput
391 protected final void write(byte[] b, int start, int length) throws IOException { method in class:UTF8XmlOutput
[all...]
/openjdk7/langtools/test/tools/javac/6889255/
H A DT6889255.java16 * 2 along with this work; if not, write to the Free Software Foundation,
123 out.write("interface Base {\n");
124 out.write(" Object base_m1(int i1);\n");
125 out.write(" Object base_m2(int i1);\n");
126 out.write("}\n");
137 out.write("abstract ");
138 out.write(outerClassKind.toString().toLowerCase() + " " + outerClassName);
140 out.write("<" + outerTypeArg + ">");
142 out.write(" extends Base");
144 out.write(" implement
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DDataOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
29 * A data output stream lets an application write primitive Java data
51 * Creates a new data output stream to write data to the specified
81 * Implements the <code>write</code> method of <code>OutputStream</code>.
87 public synchronized void write(int b) throws IOException { method in class:DataOutputStream
88 out.write(b);
100 * @param len the number of bytes to write.
104 public synchronized void write(byte b[], int off, int len) method in class:DataOutputStream
107 out.write(b, off, len);
139 out.write(
[all...]
H A DDataOutput.java18 * 2 along with this work; if not, write to the Free Software Foundation,
40 * write bytes, it is generally true that if
60 void write(int b) throws IOException; method in interface:DataOutput
75 void write(byte b[]) throws IOException; method in interface:DataOutput
94 * @param len the number of bytes to write.
97 void write(byte b[], int off, int len) throws IOException; method in interface:DataOutput
121 * does exactly the same thing as <code>write</code>
H A DBufferedOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
30 * an output stream, an application can write bytes to the underlying
53 * Creates a new buffered output stream to write data to the
63 * Creates a new buffered output stream to write data to the
82 out.write(buf, 0, count);
93 public synchronized void write(int b) throws IOException { method in class:BufferedOutputStream
107 * buffer, however, then this method will flush the buffer and write the
113 * @param len the number of bytes to write.
116 public synchronized void write(byte b[], int off, int len) throws IOException { method in class:BufferedOutputStream
119 flush the output buffer and then write th
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBASE64EncoderStream.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
80 * @param len the number of bytes to write.
83 public void write(byte[] b, int off, int len) throws IOException { method in class:BASE64EncoderStream
85 write(b[off + i]);
93 public void write(byte[] b) throws IOException { method in class:BASE64EncoderStream
94 write(b, 0, b.length);
102 public void write(int c) throws IOException { method in class:BASE64EncoderStream
148 out.write('\r');
149 out.write('\
[all...]
/openjdk7/langtools/test/tools/javac/diags/
H A DHTMLWriter.java16 * 2 along with this work; if not, write to the Free Software Foundation,
41 * @param out a Writer to which to write the generated HTML
50 * @param out a Writer to which to write the generated HTML
59 this.out.write(docType);
65 * @param out a Writer to which to write the generated HTML
78 * @param out a Writer to which to write the generated HTML
128 * @see #write
133 out.write(">");
137 out.write("<");
138 out.write(ta
245 public void write(String text) throws IOException { method in class:HTMLWriter
405 public void write(ResourceBundle i18n, String key) throws IOException { method in class:HTMLWriter
416 public void write(ResourceBundle i18n, String key, Object arg) throws IOException { method in class:HTMLWriter
427 public void write(ResourceBundle i18n, String key, Object[] args) throws IOException { method in class:HTMLWriter
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * that write() methods first process the data before writing them out
116 public void write(int b) throws IOException { method in class:CipherOutputStream
120 output.write(obuffer);
129 * The <code>write</code> method of
130 * <code>CipherOutputStream</code> calls the <code>write</code>
137 * @see javax.crypto.CipherOutputStream#write(byte[], int, int)
140 public void write(byte b[]) throws IOException { method in class:CipherOutputStream
141 write(b, 0, b.length);
150 * @param len the number of bytes to write
154 public void write(byte b[], int off, int len) throws IOException { method in class:CipherOutputStream
[all...]
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DHttpInputStream.java16 * 2 along with this work; if not, write to the Free Software Foundation,
49 o.write( "HTTP/1.1 200 OK".getBytes() );
50 o.write( "Content-Length: 20".getBytes() );
51 o.write( (byte)'\r' );
52 o.write( (byte)'\n' );
53 o.write( (byte)'\r' );
54 o.write( (byte)'\n' );
57 o.write((byte)0xff);
/openjdk7/jdk/test/java/io/charStreams/
H A DABCOutputStream.java16 * 2 along with this work; if not, write to the Free Software Foundation,
39 public void write(int c) throws IOException { method in class:ABCOutputStream
50 public void write(byte buf[], int off, int len) throws IOException { method in class:ABCOutputStream
52 write(buf[i]);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSHeader.java18 * 2 along with this work; if not, write to the Free Software Foundation,
222 os.write(TOKEN_ID);
225 os.write(mechOidBytes);
281 * @param out the outputstream to write the length to
289 out.write((byte)len);
293 out.write((byte)0x081);
294 out.write((byte)len);
298 out.write((byte)0x082);
299 out.write((byte)(len >> 8));
300 out.write((byt
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHandshakeOutStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
90 public void write(byte buf[], int off, int len) throws IOException { method in class:HandshakeOutStream
97 r.write(buf, off, howmuch);
105 * write-a-byte
107 public void write(int i) throws IOException { method in class:HandshakeOutStream
111 r.write(i);
151 * big endian formats. Note that OutputStream.write(int) only
157 r.write(i);
165 r.write(i >> 8);
166 r.write(
[all...]
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DGenDoc.java18 * 2 along with this work; if not, write to the Free Software Foundation,
186 /* Open zoneinfo file to write. */
190 out.write(header1 + new Date() + header3 + zonename + header4);
191 out.write(body1 + "<FONT size=\"+2\"><B>" + zonename + "</B></FONT>");
205 out.write("&nbsp;&nbsp;&nbsp;" +
221 out.write("&longdeg=" + deg +
226 out.write("\n<P>\n");
231 out.write("<TABLE BORDER=\"0\" WIDTH=\"100%\" CELLPADDING=\"1\" CELLSPACING=\"0\">\n" +
243 out.write("<P>\n<A NAME=\"Rules\">" +
251 out.write("<T
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DWriteable.java18 * 2 along with this work; if not, write to the Free Software Foundation,
37 void write(OutputStream arg0); method in interface:Writeable
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DSourceDataLine.java18 * 2 along with this work; if not, write to the Free Software Foundation,
47 * audio should write data to the source data line quickly enough to keep the
154 * line's buffer. If the caller attempts to write more data than can
157 * This applies even if the requested amount of data to write is greater
167 * that attempts to write additional data will block.)
169 * The number of bytes to write must represent an integral number of
174 * The return value will always meet this requirement. A request to write a
180 * (in other words, the requested amount of data to write, in bytes)
193 public int write(byte[] b, int off, int len); method in interface:SourceDataLine
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DWritableByteChannel.java18 * 2 along with this work; if not, write to the Free Software Foundation,
33 * A channel that can write bytes.
35 * <p> Only one write operation upon a writable channel may be in progress at
36 * any given time. If one thread initiates a write operation upon a channel
37 * then any other thread that attempts to initiate another write operation will
39 * I/O operations may proceed concurrently with a write operation depends upon
55 * <p> An attempt is made to write up to <i>r</i> bytes to the channel,
68 * <p> Unless otherwise specified, a write operation will return only after
70 * depending upon their state, may write only some of the bytes or possibly
72 * write an
103 public int write(ByteBuffer src) throws IOException; method in interface:WritableByteChannel
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DDigestOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
42 * {@link #write(int) write} methods.
46 * <code>write</code> methods results in
114 public void write(int b) throws IOException { method in class:DigestOutputStream
118 out.write(b);
144 public void write(byte[] b, int off, int len) throws IOException { method in class:DigestOutputStream
148 out.write(b, off, len);
153 * it is on, a call to one of the <code>write</code> methods results in an
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dprefetch_bsd_x86.inline.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
37 inline void Prefetch::write(void *loc, intx interval) { function in class:Prefetch

Completed in 211 milliseconds

1234567891011>>