Searched refs:actualRow (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/media/packages/BluetoothMidiService/tests/unit/src/com/android/bluetoothmidiservice/ |
D | BluetoothMidiEncoderTest.java | 46 byte[] actualRow = new byte[count]; in writePacket() 48 System.arraycopy(buffer, 0, actualRow, 0, count); in writePacket() 49 mBuffers.add(actualRow); in writePacket() 91 byte[] actualRow = actualRows[i]; in compareWithExpected() 93 + MidiFramer.formatMidiData(actualRow, 0, actualRow.length)); in compareWithExpected() 94 assertEquals(expectedRow.length, actualRow.length); in compareWithExpected() 96 assertEquals(expectedRow[k], actualRow[k]); in compareWithExpected()
|
D | MidiFramerTest.java | 60 byte[] actualRow = actualRows[i]; in compareWithExpected() 62 + MidiFramer.formatMidiData(actualRow, 0, actualRow.length)); in compareWithExpected() 63 assertArrayEquals(expectedRow, actualRow); in compareWithExpected()
|
D | AccumulatingMidiReceiver.java | 33 byte[] actualRow = new byte[count]; in onSend() 34 System.arraycopy(buffer, offset, actualRow, 0, count); in onSend() 35 mBuffers.add(actualRow); in onSend()
|
D | BluetoothMidiDecoderTest.java | 63 byte[] actualRow = actualRows[i]; in compareWithExpected() 65 + MidiFramer.formatMidiData(actualRow, 0, actualRow.length)); in compareWithExpected() 66 assertArrayEquals(expectedRow, actualRow); in compareWithExpected()
|
/frameworks/base/services/core/java/com/android/server/net/ |
D | NetworkStatsFactory.java | 461 NetworkStats.Entry actualRow = null; in assertEquals() local 464 actualRow = actual.getValues(i, actualRow); in assertEquals() 465 if (!expectedRow.equals(actualRow)) { in assertEquals() 467 "Expected row " + i + ": " + expectedRow + ", actual row " + actualRow); in assertEquals()
|