Searched defs:write (Results 26 - 50 of 488) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DAtomicAppend.java16 * 2 along with this work; if not, write to the Free Software Foundation,
63 // write a byte to the given channel
64 static void write(FileChannel fc, int b) throws IOException { method in class:AtomicAppend
71 fc.write(bufs);
73 fc.write(buf);
89 for (int j=0; j<writes; j++) write(fc, 'x');
93 for (int j = 0; j<writes; j++) out.write('x');
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/
H A DN2AFilter.java18 * 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]);
/openjdk7/jdk/src/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);
/openjdk7/langtools/test/tools/javac/
H A DT6665791.java16 * 2 along with this work; if not, write to the Free Software Foundation,
47 write(test_java, test);
60 sw.write(arg0.toString());
76 static void write(File file, String body) throws IOException { method in class:T6665791
78 out.write(body);
H A DT6759996.java16 * 2 along with this work; if not, write to the Free Software Foundation,
44 write(new File("A.java"), "class A { }");
45 write(new File("B.java"), "class B extends A { }");
61 void write(File to, String body) throws IOException { method in class:T6759996
62 System.err.println("write " + to);
72 out.write(body);
74 out.write("\n");
/openjdk7/langtools/test/tools/javac/implicitThis/
H A DNewBeforeOuterConstructed.java16 * 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/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DIORTemplateListImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
96 public void write( OutputStream os ) method in class:IORTemplateListImpl
102 iortemp.write( os ) ;
H A DNewObjectKeyTemplateBase.java18 * 2 along with this work; if not, write to the Free Software Foundation,
57 public void write(ObjectId objectId, OutputStream os) method in class:NewObjectKeyTemplateBase
59 super.write( objectId, os ) ;
60 getORBVersion().write( os ) ;
63 public void write(OutputStream os) method in class:NewObjectKeyTemplateBase
65 super.write( os ) ;
66 getORBVersion().write( os ) ;
H A DObjectAdapterIdBase.java18 * 2 along with this work; if not, write to the Free Software Foundation,
89 public void write( OutputStream os ) method in class:ObjectAdapterIdBase
H A DObjectIdImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
67 public void write( OutputStream os ) method in class:ObjectIdImpl
H A DObjectKeyImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
83 public void write( OutputStream os ) method in class:ObjectKeyImpl
85 oktemp.write( id, os ) ;
92 write( os ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPAddressBase.java18 * 2 along with this work; if not, write to the Free Software Foundation,
60 public void write( OutputStream os ) method in class:IIOPAddressBase
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DHexOutputStream.java18 * 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]);
H A DLegacyHookPutFields.java18 * 2 along with this work; if not, write to the Free Software Foundation,
108 public void write(ObjectOutput out) throws IOException { method in class:LegacyHookPutFields
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DTaggedProfileTemplate.java18 * 2 along with this work; if not, write to the Free Software Foundation,
61 void write( ObjectKeyTemplate oktemp, ObjectId id, OutputStream os) ; method in interface:TaggedProfileTemplate
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DORBVersion.java18 * 2 along with this work; if not, write to the Free Software Foundation,
41 void write( OutputStream os ) ; method in interface:ORBVersion
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/servicecontext/
H A DServiceContext.java18 * 2 along with this work; if not, write to the Free Software Foundation,
93 public void write(OutputStream s, GIOPVersion gv) throws SystemException method in class:ServiceContext
H A DUnknownServiceContext.java18 * 2 along with this work; if not, write to the Free Software Foundation,
56 public void write( OutputStream os , GIOPVersion gv) method in class:UnknownServiceContext
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DServiceDetailHelper.java18 * 2 along with this work; if not, write to the Free Software Foundation,
37 public static void write(org.omg.CORBA.portable.OutputStream out, org.omg.CORBA.ServiceDetail that) { method in class:ServiceDetailHelper
60 write(out, that);
H A DServiceInformationHelper.java18 * 2 along with this work; if not, write to the Free Software Foundation,
37 public static void write(org.omg.CORBA.portable.OutputStream out, org.omg.CORBA.ServiceInformation that) method in class:ServiceInformationHelper
43 org.omg.CORBA.ServiceDetailHelper.write(out, that.service_details[i]);
69 write(out, that);
/openjdk7/jdk/src/share/classes/javax/sound/midi/spi/
H A DMidiFileWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
37 * that implement this interface can write one or more types of MIDI file from
56 * Obtains the file types that this file writer can write from the
69 * @param fileType the file type for which write capabilities are queried
88 * @param fileType the file type for which write capabilities are queried
118 public abstract int write(Sequence in, int fileType, OutputStream out) throws IOException; method in class:MidiFileWriter
134 public abstract int write(Sequence in, int fileType, File out) throws IOException; method in class:MidiFileWriter
/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/javax/sound/sampled/spi/
H A DAudioFileWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
39 * implementations can write one or more types of audio file from an audio
59 * @param fileType the file type for which write capabilities are queried
77 * Obtains the file types that this audio file writer can write from the
90 * @param fileType file type for which write capabilities are queried
113 * to write such a file type will fail with an IOException if the length in
127 public abstract int write(AudioInputStream stream, AudioFileFormat.Type fileType, OutputStream out) throws IOException; method in class:AudioFileWriter
144 public abstract int write(AudioInputStream stream, AudioFileFormat.Type fileType, File out) throws IOException; method in class:AudioFileWriter
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFEditorKit.java18 * 2 along with this work; if not, write to the Free Software Foundation,
94 * @param out The stream to write to
95 * @param doc The source for the write.
98 * @param len The amount to write out.
103 public void write(OutputStream out, Document doc, int pos, int len) method in class:RTFEditorKit
140 * @param out The stream to write to
141 * @param doc The source for the write.
144 * @param len The amount to write out.
149 public void write(Writer out, Document doc, int pos, int len) method in class:RTFEditorKit
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/
H A DDigesterOutputStream.java77 public void write(byte[] input) { method in class:DigesterOutputStream
78 write(input, 0, input.length);
82 public void write(int input) { method in class:DigesterOutputStream
84 bos.write(input);
90 public void write(byte[] input, int offset, int len) { method in class:DigesterOutputStream
92 bos.write(input, offset, len);

Completed in 501 milliseconds

1234567891011>>