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

  /packages/apps/Contacts/tests/src/com/android/contacts/
ContactsUtilsTests.java 58 assertTrue("1", ContactsUtils.areIntentActionEqual(null, null));
59 assertTrue("1", ContactsUtils.areIntentActionEqual(new Intent("a"), new Intent("a")));
61 assertFalse("11", ContactsUtils.areIntentActionEqual(new Intent("a"), null));
62 assertFalse("12", ContactsUtils.areIntentActionEqual(null, new Intent("a")));
64 assertFalse("21", ContactsUtils.areIntentActionEqual(new Intent("a"), new Intent()));
65 assertFalse("22", ContactsUtils.areIntentActionEqual(new Intent(), new Intent("b")));
66 assertFalse("23", ContactsUtils.areIntentActionEqual(new Intent("a"), new Intent("b")));
  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 102 public static final boolean areIntentActionEqual(Intent a, Intent b) {
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 314 || !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 329 milliseconds