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

  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
Action.java 51 public boolean isSuperPrimary();
DataAction.java 106 mIsSuperPrimary = item.isSuperPrimary();
280 public boolean isSuperPrimary() {
ExpandingEntryCardView.java     [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java 132 public boolean isSuperPrimary() {
207 if (isSuperPrimary() || that.isSuperPrimary()) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ValuesDelta.java 175 public boolean isSuperPrimary() {
176 final Long isSuperPrimary = getAsLong(ContactsContract.Data.IS_SUPER_PRIMARY);
177 return isSuperPrimary == null ? false : isSuperPrimary != 0;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 184 if (entry.isSuperPrimary()) {
604 public boolean isSuperPrimary() {
605 final Long isSuperPrimary = getAsLong(Data.IS_SUPER_PRIMARY);
606 return isSuperPrimary == null ? false : isSuperPrimary != 0;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardBuilder.java 233 Integer isSuperPrimary = contentValues.getAsInteger(StructuredName.IS_SUPER_PRIMARY);
234 if (isSuperPrimary != null && isSuperPrimary > 0) {
    [all...]

Completed in 386 milliseconds