Home
last modified time | relevance | path

Searched refs:noteIndex (Results 1 – 3 of 3) sorted by relevance

/developers/samples/android/common/src/java/com/example/android/common/midi/synth/
DSawVoice.java36 public void noteOn(int noteIndex, int velocity) { in noteOn() argument
37 super.noteOn(noteIndex, velocity); in noteOn()
38 mOscillator.setPitch(noteIndex); in noteOn()
DSynthEngine.java197 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()
DSynthVoice.java33 public void noteOn(int noteIndex, int velocity) { in noteOn() argument
35 this.mNoteIndex = noteIndex; in noteOn()