OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:equalsForTest
(Results
1 - 9
of
9
) sorted by null
/packages/apps/Email/provider_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
140
public boolean
equalsForTest
(ImapElement that) {
141
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))) {
ImapString.java
179
public final boolean
equalsForTest
(ImapElement that) {
180
if (!super.
equalsForTest
(that)) {
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapElement.java
75
public boolean
equalsForTest
(ImapElement that) {
76
return super.
equalsForTest
(that);
118
public boolean
equalsForTest
(ImapElement that) {
ImapResponse.java
123
public boolean
equalsForTest
(ImapElement that) {
124
if (!super.
equalsForTest
(that)) {
ImapList.java
211
public boolean
equalsForTest
(ImapElement that) {
212
if (!super.
equalsForTest
(that)) {
220
if (!mList.get(i).
equalsForTest
(thatList.getElementOrNone(i))) {
ImapString.java
172
public final boolean
equalsForTest
(ImapElement that) {
173
if (!super.
equalsForTest
(that)) {
/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));
Completed in 838 milliseconds