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 113 final Integer superPrimary = values.getAsInteger(Data.IS_SUPER_PRIMARY);
114 if ((primary != null && primary != 0) || (superPrimary != null && superPrimary != 0)) {
120 if (superPrimary != null) {
121 if (superPrimary != 0) {
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java 226 public void setSuperPrimary(boolean superPrimary) {
227 mEntry.put(Photo.IS_SUPER_PRIMARY, superPrimary ? 1 : 0);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 237 boolean superPrimary) {
244 if (superPrimary) {
261 boolean superPrimary) {
262 return insertPhoneNumber(rawContactId, phoneNumber, primary, superPrimary, Phone.TYPE_HOME);
271 boolean superPrimary, int type) {
280 if (superPrimary) {
297 boolean superPrimary) {
298 return insertEmail(rawContactId, email, primary, superPrimary, Email.TYPE_HOME, null);
307 boolean superPrimary, int type, String label) {
317 if (superPrimary) {
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java     [all...]

Completed in 4439 milliseconds