Searched refs:noteIndex (Results 1 – 3 of 3) sorted by relevance
/developers/samples/android/common/src/java/com/example/android/common/midi/synth/ |
D | SawVoice.java | 36 public void noteOn(int noteIndex, int velocity) { in noteOn() argument 37 super.noteOn(noteIndex, velocity); in noteOn() 38 mOscillator.setPitch(noteIndex); in noteOn()
|
D | SynthEngine.java | 197 public void noteOff(int channel, int noteIndex, int velocity) { in noteOff() argument 198 SynthVoice voice = mVoices.get(noteIndex); in noteOff() 230 public void noteOn(int channel, int noteIndex, int velocity) { in noteOn() argument 232 noteOff(channel, noteIndex, velocity); in noteOn() 234 mVoices.remove(noteIndex); in noteOn() 242 voice.noteOn(noteIndex, velocity); in noteOn() 243 mVoices.put(noteIndex, voice); in noteOn()
|
D | SynthVoice.java | 33 public void noteOn(int noteIndex, int velocity) { in noteOn() argument 35 this.mNoteIndex = noteIndex; in noteOn()
|