HomeSort by relevance Sort by last modified time
    Searched defs:ContactsUtils (Results 1 - 3 of 3) sorted by null

  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
ContactsUtilsTests.java 24 import com.android.contacts.common.ContactsUtils;
28 * Tests for {@link ContactsUtils}.
34 assertFalse(ContactsUtils.isGraphic(null));
38 assertFalse(ContactsUtils.isGraphic(""));
42 assertFalse(ContactsUtils.isGraphic(" "));
46 assertTrue(ContactsUtils.isGraphic("."));
50 assertTrue("null:null", ContactsUtils.areObjectsEqual(null, null));
51 assertTrue("1:1", ContactsUtils.areObjectsEqual(1, 1));
53 assertFalse("null:1", ContactsUtils.areObjectsEqual(null, 1));
54 assertFalse("1:null", ContactsUtils.areObjectsEqual(1, null))
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java 33 public class ContactsUtils {
34 private static final String TAG = "ContactsUtils";
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 44 public class ContactsUtils {
45 private static final String TAG = "ContactsUtils";
247 host = ContactsUtils.lookupProviderNameFromId(protocol);

Completed in 1206 milliseconds