Home
last modified time | relevance | path

Searched refs:actualRow (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/media/packages/BluetoothMidiService/tests/unit/src/com/android/bluetoothmidiservice/
DBluetoothMidiEncoderTest.java46 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()
DMidiFramerTest.java60 byte[] actualRow = actualRows[i]; in compareWithExpected()
62 + MidiFramer.formatMidiData(actualRow, 0, actualRow.length)); in compareWithExpected()
63 assertArrayEquals(expectedRow, actualRow); in compareWithExpected()
DAccumulatingMidiReceiver.java33 byte[] actualRow = new byte[count]; in onSend()
34 System.arraycopy(buffer, offset, actualRow, 0, count); in onSend()
35 mBuffers.add(actualRow); in onSend()
DBluetoothMidiDecoderTest.java63 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/
DNetworkStatsFactory.java461 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()