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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java 124 public boolean 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 267 Integer isSuperPrimary = contentValues.getAsInteger(StructuredName.IS_SUPER_PRIMARY);
268 if (isSuperPrimary != null && isSuperPrimary > 0) {
    [all...]

Completed in 248 milliseconds