Searched defs:voices (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftChannel.java103 private SoftVoice[] voices; field in class:SoftChannel
213 this.voices = synth.getVoices();
230 for (int i = x; i < voices.length; i++)
231 if (!voices[i].active)
243 for (int j = 0; j < voices.length; j++) {
244 if (voices[j].stealer_channel == null) {
246 steal_channel = voices[j].channel;
248 if (voices[j].channel != 9) {
249 if (voices[j].channel > steal_channel)
250 steal_channel = voices[
[all...]
H A DSoftSynthesizer.java233 private SoftVoice[] voices; field in class:SoftSynthesizer
474 return voices;
545 VoiceStatus[] tempVoiceStatusArray = new VoiceStatus[voices.length];
546 for (int i = 0; i < voices.length; i++) {
547 VoiceStatus a = voices[i];
1168 voices = new SoftVoice[maxpoly];
1170 voices[i] = new SoftVoice(this);
1258 voices = null;

Completed in 33 milliseconds