Home
last modified time | relevance | path

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

/frameworks/opt/telephony/testing/src/com/android/internal/telephony/testing/
DCursorSubject.java41 private final Cursor mActual; field in CursorSubject
45 this.mActual = new StringableCursor(actual); in CursorSubject()
60 check("getCount()").that(mActual.getCount()).isEqualTo(count); in hasCount()
65 check("getColumnNames()").that(mActual.getColumnNames()).asList() in hasColumnNames()
71 check("moveToPosition").that(mActual.moveToPosition(position)).isTrue(); in atRow()
77 check("getColumnCount()").that(mActual.getColumnCount()).isEqualTo(values.length); in hasRowValues()
80 expectedValues.put(mActual.getColumnName(i), values[i].toString()); in hasRowValues()
84 DatabaseUtils.cursorRowToContentValues(mActual, actualValues); in hasRowValues()
86 check("Row: %s", mActual.getPosition()).that(actualValues).isEqualTo(expectedValues); in hasRowValues()
101 int index = mActual.getColumnIndex(columnName); in hasRowValue()
[all …]
/frameworks/base/tests/RollbackTest/lib/src/com/android/tests/rollback/host/
DWatchdogEventLogger.java83 private final WatchdogEventLogger mActual; field in WatchdogEventLogger.Subject
87 mActual = subject; in Subject()
103 .that(mActual.watchdogEventOccurred(type, logPackage, rollbackReason, in eventOccurred()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/plugins/
DVersionInfo.java123 private int mActual; field in VersionInfo.InvalidVersionException
134 mActual = actual; in InvalidVersionException()
146 return mActual; in getActualVersion()
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
DFileRotatorTest.java441 private ArrayList<String> mActual = Lists.newArrayList();
444 mActual.add(new DataInputStream(in).readUTF());
448 mActual.clear();
452 assertEquals(Arrays.asList(expected), mActual);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java1216 private final MotionEvent mActual; field in NotificationStackScrollLayoutTest.MotionEventSubject
1219 mActual = actual; in MotionEventSubject()
1223 assertThat(mActual.getActionMasked()).isEqualTo(expected.getActionMasked()); in matches()
1224 assertThat(mActual.getDownTime()).isEqualTo(expected.getDownTime()); in matches()
1225 assertThat(mActual.getEventTime()).isEqualTo(expected.getEventTime()); in matches()
1226 assertThat(mActual.getX()).isEqualTo(expected.getX()); in matches()
1227 assertThat(mActual.getY()).isEqualTo(expected.getY()); in matches()