OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:areIntentActionEqual
(Results
1 - 6
of
6
) sorted by null
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
ContactsUtilsTests.java
59
assertTrue("1", ContactsUtils.
areIntentActionEqual
(null, null));
60
assertTrue("1", ContactsUtils.
areIntentActionEqual
(new Intent("a"), new Intent("a")));
62
assertFalse("11", ContactsUtils.
areIntentActionEqual
(new Intent("a"), null));
63
assertFalse("12", ContactsUtils.
areIntentActionEqual
(null, new Intent("a")));
65
assertFalse("21", ContactsUtils.
areIntentActionEqual
(new Intent("a"), new Intent()));
66
assertFalse("22", ContactsUtils.
areIntentActionEqual
(new Intent(), new Intent("b")));
67
assertFalse("23", ContactsUtils.
areIntentActionEqual
(new Intent("a"), new Intent("b")));
/packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java
102
public static final boolean
areIntentActionEqual
(Intent a, Intent b) {
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java
320
|| !ContactsUtils.
areIntentActionEqual
(mIntent, that.mIntent)) {
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java
420
public static final boolean
areIntentActionEqual
(Intent a, Intent b) {
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java
633
|| !ContactsUtils.
areIntentActionEqual
(intent, entry.intent)
634
|| !ContactsUtils.
areIntentActionEqual
(secondaryIntent, entry.secondaryIntent)
/packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java
[
all
...]
Completed in 113 milliseconds