Lines Matching defs:in

9  * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
59 * what devices are installed and to obtain the ones needed in that
71 * The properties file is "lib/sound.properties" in the JRE
72 * directory. If a property exists both as a system property and in the
75 * The syntax of the properties file is specified in
149 * in the list of installed MIDI device providers,
155 * <code>&quot;SunMIDI1&quot;</code> in the list of all devices
158 * be found in the list of all devices is returned.
235 * is defined or it is defined in the file &quot;sound.properties&quot;,
243 * the {@code MidiDeviceReceiver} interface, it will be wrapped in a
254 * instances have to be closed in order to release system resources
263 * or no device providing receivers is installed in the system
289 * is defined or it is defined in the file &quot;sound.properties&quot;,
294 * the {@code MidiDeviceTransmitter} interface, it will be wrapped in a
306 * instances have to be closed in order to release system resources
314 * or no device providing transmitters is installed in the system
337 * is defined or it is defined in the file &quot;sound.properties&quot;,
344 * or no synthesizer is installed in the system
374 * is defined or it is defined in the file &quot;sound.properties&quot;,
383 * or no sequencer is installed in the system.
422 * is defined or it is defined in the file "sound.properties",
429 * or no sequencer is installed in the system,
605 * Obtains the MIDI file format of the data in the specified input stream.
612 * need to mark the stream, read enough data to determine whether it is in
661 * Obtains the MIDI file format of the data in the specified URL. The URL
760 * need to mark the stream, read enough data to determine whether it is in
775 * contained in the input stream
1006 * @param in sequence containing MIDI data to be written to the file
1016 public static int write(Sequence in, int fileType, OutputStream out) throws IOException {
1024 if( writer.isFileTypeSupported( fileType, in ) ) {
1026 bytesWritten = writer.write(in, fileType, out);
1040 * @param in sequence containing MIDI data to be written to the file
1050 public static int write(Sequence in, int type, File out) throws IOException {
1058 if( writer.isFileTypeSupported( type, in ) ) {
1060 bytesWritten = writer.write(in, type, out);
1473 * using sun.misc.Service, the SPI mechanism in 1.3.