Home
last modified time | relevance | path

Searched refs:checkEquals (Results 1 – 4 of 4) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
DNotificationListenerVerifierActivity.java593 pass &= checkEquals(mPackageString, in test()
599 pass &= checkEquals(mIcon1, payload.getInt(JSON_ICON), in test()
603 pass &= checkEquals(mId1, payload.getInt(JSON_ID), in test()
605 pass &= checkEquals(mWhen1, payload.getLong(JSON_WHEN), in test()
609 pass &= checkEquals(mIcon2, payload.getInt(JSON_ICON), in test()
613 pass &= checkEquals(mId2, payload.getInt(JSON_ID), in test()
615 pass &= checkEquals(mWhen2, payload.getLong(JSON_WHEN), in test()
619 pass &= checkEquals(mIcon3, payload.getInt(JSON_ICON), in test()
623 pass &= checkEquals(mId3, payload.getInt(JSON_ID), in test()
625 pass &= checkEquals(mWhen3, payload.getLong(JSON_WHEN), in test()
[all …]
DInteractiveVerifierActivity.java398 protected boolean checkEquals(long[] expected, long[] actual, String message) { in checkEquals() method in InteractiveVerifierActivity
406 protected boolean checkEquals(Object[] expected, Object[] actual, String message) { in checkEquals() method in InteractiveVerifierActivity
414 protected boolean checkEquals(Parcelable expected, Parcelable actual, String message) { in checkEquals() method in InteractiveVerifierActivity
422 protected boolean checkEquals(boolean expected, boolean actual, String message) { in checkEquals() method in InteractiveVerifierActivity
430 protected boolean checkEquals(long expected, long actual, String message) { in checkEquals() method in InteractiveVerifierActivity
438 protected boolean checkEquals(CharSequence expected, CharSequence actual, String message) { in checkEquals() method in InteractiveVerifierActivity
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DScript.java228 checkEquals("allocation info", AllocationInfo.newInstance(allocation), in setInput()
252 checkEquals("allocation info", AllocationInfo.newInstance(allocation), in setOutput()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DPreconditions.java60 public static <T> T checkEquals(String argName, T arg, in checkEquals() method in Preconditions