Home
last modified time | relevance | path

Searched refs:currentInt (Results 1 – 2 of 2) sorted by relevance

/development/samples/browseable/MidiScope/src/com.example.android.common.midi/
DMidiFramer.java55 final int currentInt = currentByte & 0xFF; in onSend() local
56 if (currentInt >= 0x80) { // status byte? in onSend()
57 if (currentInt < 0xF0) { // channel message? in onSend()
61 } else if (currentInt < 0xF8) { // system common? in onSend()
62 if (currentInt == 0xF0 /* SysEx Start */) { in onSend()
66 } else if (currentInt == 0xF7 /* SysEx End */) { in onSend()
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
DMidiFramer.java55 final int currentInt = currentByte & 0xFF; in onSend() local
56 if (currentInt >= 0x80) { // status byte? in onSend()
57 if (currentInt < 0xF0) { // channel message? in onSend()
61 } else if (currentInt < 0xF8) { // system common? in onSend()
62 if (currentInt == 0xF0 /* SysEx Start */) { in onSend()
66 } else if (currentInt == 0xF7 /* SysEx End */) { in onSend()