Searched defs:track (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DSequence.java37 * information and one or more tracks. Each <code>{@link Track track}</code> consists of a
243 * Creates a new, initially empty track as part of this sequence.
244 * The track initially contains the meta-event End of Track.
245 * The newly created track is returned. All tracks in the sequence
248 * @return the newly created track
252 Track track = new Track();
253 tracks.addElement(track);
255 return track;
260 * Removes the specified track from the sequence.
261 * @param track th
268 deleteTrack(Track track) argument
[all...]
H A DSequencer.java177 * of the sequencer. Any events already in the track are overwritten for the duration
183 * at least one track must be specifically enabled for recording.
218 * Prepares the specified track for recording events received on a particular channel.
219 * Once enabled, a track will receive events when recording is active.
220 * @param track the track to which events will be recorded
222 * for the channel value, the track will receive data from all channels.
223 * @throws IllegalArgumentException thrown if the track is not part of the current
226 public void recordEnable(Track track, int channel); argument
230 * Disables recording to the specified track
235 recordDisable(Track track) argument
468 setTrackMute(int track, boolean mute) argument
482 getTrackMute(int track) argument
502 setTrackSolo(int track, boolean solo) argument
516 getTrackSolo(int track) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.cpp117 void PromotionInfo::track(PromotedObject* trackOop) { function in class:PromotionInfo
118 track(trackOop, oop(trackOop)->klass());
121 void PromotionInfo::track(PromotedObject* trackOop, klassOop klassOfOop) { function in class:PromotionInfo
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DMidiUtils.java58 // now get message and check for end of track
234 * Binary search for the event indexes of the track
237 * @return index in track which is on or after "tick".
238 * if no entries are found that follow after tick, track.size() is returned
240 public static int tick2index(Track track, long tick) { argument
244 int high = track.size() - 1;
249 long t = track.get(ret).getTick();
301 // tempo events only occur in track 0
302 Track track = tracks[0];
303 int c = track
[all...]
H A DStandardMidiFileReader.java191 // for each track, go to the beginning and read the track events
246 private int trackLength = 0; // remaining length in track
299 // now read track in a byte array
318 void readTrack(Track track) throws IOException, InvalidMidiDataException { argument
325 // get a valid status byte from the beginning of the track.
397 // end of track means it!
408 track.add(new MidiEvent(message, tick));
H A DStandardMidiFileWriter.java72 private DataOutputStream tddos; // data output stream for track writing
196 // Now build the file one track at a time
212 // Now seqence the track streams
219 // don't include failed track streams
327 private InputStream writeTrack( Track track, int type ) throws IOException, InvalidMidiDataException { argument
330 int size = track.size();
347 // Write each event in the track
350 MidiEvent event = track.get(i);
451 // End write each event in the track
H A DRealTimeSequencer.java98 /** if a particular track is muted */
100 /** if a particular track is solo */
312 public void recordEnable(Track track, int channel) { argument
313 if (!findTrack(track)) {
318 RecordingTrack rc = RecordingTrack.get(recordingTracks, track);
322 recordingTracks.add(new RecordingTrack(track, channel));
329 public void recordDisable(Track track) { argument
331 RecordingTrack rc = RecordingTrack.get(recordingTracks, track);
340 private boolean findTrack(Track track) { argument
345 if (track
582 setTrackMute(int track, boolean mute) argument
593 getTrackMute(int track) argument
600 setTrackSolo(int track, boolean solo) argument
611 getTrackSolo(int track) argument
1208 private final Track track; field in class:RealTimeSequencer.RecordingTrack
1211 RecordingTrack(Track track, int channel) argument
1216 get(List recordingTracks, Track track) argument
1615 sendNoteOffIfOn(Track track, long endTick) argument
[all...]

Completed in 836 milliseconds