Home
last modified time | relevance | path

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

/external/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/
DSynthEngine.java220 public void noteOff(int channel, int noteIndex, int velocity) { in noteOff() argument
221 SynthVoice voice = mVoices.get(noteIndex); in noteOff()
253 public void noteOn(int channel, int noteIndex, int velocity) { in noteOn() argument
255 noteOff(channel, noteIndex, velocity); in noteOn()
257 mVoices.remove(noteIndex); in noteOn()
265 voice.noteOn(noteIndex, velocity); in noteOn()
266 mVoices.put(noteIndex, voice); in noteOn()
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()
DSynthVoice.java33 public void noteOn(int noteIndex, int velocity) { in noteOn() argument
35 this.mNoteIndex = noteIndex; in noteOn()