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.java244 pass &= checkEquals(mPackageString, in test()
250 pass &= checkEquals(mIcon1, payload.getInt(JSON_ICON), in test()
254 pass &= checkEquals(mId1, payload.getInt(JSON_ID), in test()
256 pass &= checkEquals(mWhen1, payload.getLong(JSON_WHEN), in test()
260 pass &= checkEquals(mIcon2, payload.getInt(JSON_ICON), in test()
264 pass &= checkEquals(mId2, payload.getInt(JSON_ID), in test()
266 pass &= checkEquals(mWhen2, payload.getLong(JSON_WHEN), in test()
270 pass &= checkEquals(mIcon3, payload.getInt(JSON_ICON), in test()
274 pass &= checkEquals(mId3, payload.getInt(JSON_ID), in test()
276 pass &= checkEquals(mWhen3, payload.getLong(JSON_WHEN), in test()
[all …]
DInteractiveVerifierActivity.java361 protected boolean checkEquals(long[] expected, long[] actual, String message) { in checkEquals() method in InteractiveVerifierActivity
369 protected boolean checkEquals(Object[] expected, Object[] actual, String message) { in checkEquals() method in InteractiveVerifierActivity
377 protected boolean checkEquals(Parcelable expected, Parcelable actual, String message) { in checkEquals() method in InteractiveVerifierActivity
385 protected boolean checkEquals(boolean expected, boolean actual, String message) { in checkEquals() method in InteractiveVerifierActivity
393 protected boolean checkEquals(long expected, long actual, String message) { in checkEquals() method in InteractiveVerifierActivity
401 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