Searched refs:track (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/
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...]
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...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
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...]
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 DSoftMidiAudioFileReader.java89 Track track = tracks[i];
90 if (trackpos < track.size()) {
91 MidiEvent event = track.get(trackpos);
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 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));
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.hpp170 void track(PromotedObject* trackOop); // keep track of a promoted oop
173 void track(PromotedObject* trackOop, klassOop klassOfOop); // keep track of a promoted oop
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
H A DcompactibleFreeListSpace.cpp1436 // then allocate and copy, then track promoted info if needed.
1437 // When tracking (see PromotionInfo::track()), the mark word may
1452 _promoInfo.track((PromotedObject*)res);
H A DconcurrentMarkSweepGeneration.cpp1371 // then allocate and copy, then track promoted info if needed.
1372 // When tracking (see PromotionInfo::track()), the mark word may
1416 // Now we can track the promoted object, if necessary. We take care
1421 promoInfo->track((PromotedObject*)obj, old->klass());
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DTestRender1.java60 Track track = tracks[i];
61 if (trackpos < track.size()) {
62 MidiEvent event = track.get(trackpos);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt86 Thus we need to track all the window's state changes. Also, for
130 That leads to us to track a separate transient_for chain for
/openjdk7/jdk/src/share/classes/sun/font/
H A DStandardGlyphVector.java189 float track = getTracking(font);
190 if (track != 0) {
191 track *= font.getSize2D();
192 Point2D.Float trackPt = new Point2D.Float(track, 0); // advance delta
1302 float track = getTracking(font);
1303 if (track != 0) {
1304 track *= font.getSize2D();
1305 trackPt = new Point2D.Float(track, 0); // advance delta
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDnDDropTargetProtocol.java427 boolean track = true;
487 track = true;
572 trackSourceActions = track;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DFlow.java352 /** Do we need to track init/uninit state of this symbol?
786 boolean track = trackable(tree.sym);
787 if (track && tree.sym.owner.kind == MTH) newVar(tree.sym);
793 if (track) letInit(tree.pos(), tree.sym);

Completed in 570 milliseconds