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

  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
Action.java 51 public boolean isSuperPrimary();
DataAction.java 106 mIsSuperPrimary = item.isSuperPrimary();
284 public boolean isSuperPrimary() {
ExpandingEntryCardView.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
StructuredNameDataItem.java 95 public boolean isSuperPrimary() {
DataItem.java 134 public boolean isSuperPrimary() {
220 if (isSuperPrimary() || that.isSuperPrimary()) {
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
StructuredNameDataItem.java 94 public boolean isSuperPrimary() {
DataItem.java 125 public boolean isSuperPrimary() {
209 if (isSuperPrimary() || that.isSuperPrimary()) {
  /packages/apps/Contacts/src/com/android/contacts/model/
ValuesDelta.java 179 public boolean isSuperPrimary() {
180 final Long isSuperPrimary = getAsLong(ContactsContract.Data.IS_SUPER_PRIMARY);
181 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 402 milliseconds