HomeSort by relevance Sort by last modified time
    Searched refs:equalsForTest (Results 1 - 6 of 6) sorted by null

  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapElementTest.java 33 assertTrue(ImapElement.NONE.equalsForTest(ImapElement.NONE));
34 assertFalse(ImapElement.NONE.equalsForTest(null));
35 assertFalse(ImapElement.NONE.equalsForTest(ImapTestUtils.STRING_1));
36 assertFalse(ImapElement.NONE.equalsForTest(ImapTestUtils.LIST_1));
ImapTestUtils.java 52 * Note this method used {@link ImapElement#equalsForTest} rather than equals().
59 if (expected != null && expected.equalsForTest(actual)) {
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapElement.java 69 public boolean equalsForTest(ImapElement that) {
70 return super.equalsForTest(that);
114 public boolean equalsForTest(ImapElement that) {
ImapResponse.java 133 public boolean equalsForTest(ImapElement that) {
134 if (!super.equalsForTest(that)) {
ImapString.java 180 public final boolean equalsForTest(ImapElement that) {
181 if (!super.equalsForTest(that)) {
ImapList.java 220 public boolean equalsForTest(ImapElement that) {
221 if (!super.equalsForTest(that)) {
229 if (!mList.get(i).equalsForTest(thatList.getElementOrNone(i))) {

Completed in 55 milliseconds