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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java 133 Integer superPrimary = mContentValues.getAsInteger(Data.IS_SUPER_PRIMARY);
134 return superPrimary != null && superPrimary != 0;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 114 final Integer superPrimary = values.getAsInteger(Data.IS_SUPER_PRIMARY);
115 if ((primary != null && primary != 0) || (superPrimary != null && superPrimary != 0)) {
121 if (superPrimary != null) {
122 if (superPrimary != 0) {
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java 228 public void setSuperPrimary(boolean superPrimary) {
229 mEntry.put(Photo.IS_SUPER_PRIMARY, superPrimary ? 1 : 0);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 243 boolean superPrimary) {
250 if (superPrimary) {
267 boolean superPrimary) {
268 return insertPhoneNumber(rawContactId, phoneNumber, primary, superPrimary, Phone.TYPE_HOME);
277 boolean superPrimary, int type) {
286 if (superPrimary) {
303 boolean superPrimary) {
304 return insertEmail(rawContactId, email, primary, superPrimary, Email.TYPE_HOME, null);
313 boolean superPrimary, int type, String label) {
323 if (superPrimary) {
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java     [all...]

Completed in 418 milliseconds