Home
last modified time | relevance | path

Searched refs:PINNED (Results 1 – 13 of 13) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java196 Contacts.PINNED, in testContactsProjection()
237 Contacts.PINNED, in testContactsStrequentProjection()
282 Contacts.PINNED, in testContactsStrequentPhoneOnlyProjection()
331 Contacts.PINNED, in testContactsWithSnippetProjection()
387 RawContacts.PINNED, in testRawContactsProjection()
462 Contacts.PINNED, in testDataProjection()
544 Contacts.PINNED, in testDistinctDataProjection()
638 Contacts.PINNED, in testEntityProjection()
2944 assertStoredValue(rawContactUri, RawContacts.PINNED, "0"); in testUpdateFromMetadataEntry()
2956 assertStoredValue(rawContactUri, RawContacts.PINNED, "1"); in testUpdateFromMetadataEntry()
[all …]
DContactMetadataProviderTest.java225 assertStoredValue(rawContactUri, RawContacts.PINNED, "2"); in testInsertAndUpdateMetadataSync()
257 assertStoredValue(rawContactUri, RawContacts.PINNED, "1"); in testInsertAndUpdateMetadataSync()
DContactsDatabaseHelperUpgradeTest.java242 new TableColumn(Contacts.PINNED, INTEGER, true,
276 new TableColumn(RawContacts.PINNED, INTEGER, true,
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java357 + Contacts.PINNED + " = IFNULL((SELECT MIN(" + RawContacts.PINNED + ") FROM " in AbstractContactAggregator()
359 + ContactsColumns.CONCRETE_ID + " AND " + RawContacts.PINNED + ">" in AbstractContactAggregator()
384 " SET " + RawContacts.PINNED + "=" + PinnedPositions.UNPINNED + in AbstractContactAggregator()
1274 + RawContacts.PINNED + ","
1310 int PINNED = 12; field
1330 + Contacts.PINNED + "=?, "
1346 + Contacts.PINNED + ", "
1361 int PINNED = 9; field
1463 final int rawContactPinned = c.getInt(RawContactsQuery.PINNED); in computeAggregateData()
1537 statement.bindLong(ContactReplaceSqlStatement.PINNED, in computeAggregateData()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DMetadataEntryParser.java47 private final static String PINNED = "pinned"; field in MetadataEntryParser
165 final int pinned = contactPrefs.has(PINNED) ? contactPrefs.getInt(PINNED) : 0; in parseDataToMetaDataEntry()
DContactsDatabaseHelper.java442 public static final String CONCRETE_PINNED = Tables.CONTACTS + "." + Contacts.PINNED;
488 Tables.RAW_CONTACTS + "." + RawContacts.PINNED;
1279 Contacts.PINNED + " INTEGER NOT NULL DEFAULT " + PinnedPositions.UNPINNED + "," + in onCreate()
1317 RawContacts.PINNED + " INTEGER NOT NULL DEFAULT " + PinnedPositions.UNPINNED + in onCreate()
1984 + " AS " + Contacts.PINNED; in createContactsViews()
2055 + RawContacts.PINNED; in createContactsViews()
2099 + " AS " + Contacts.PINNED + ", " in createContactsViews()
DContactsProvider2.java561 " SET " + Contacts.PINNED + " = " + PinnedPositions.UNPINNED +
562 " WHERE " + Contacts._ID + " = ?1 AND " + Contacts.PINNED + " <= " +
568 " SET " + RawContacts.PINNED + " = " + PinnedPositions.UNPINNED +
569 " WHERE " + RawContacts.CONTACT_ID + " = ?1 AND " + Contacts.PINNED + " <= " +
638 .add(Contacts.PINNED)
827 .add(RawContacts.PINNED)
2843 if (!values.containsKey(RawContacts.PINNED)) { in insertRawContact()
2844 values.put(RawContacts.PINNED, PinnedPositions.UNPINNED); in insertRawContact()
4749 values, RawContacts.PINNED, in updateContactOptions()
4750 inputValues, Contacts.PINNED); in updateContactOptions()
[all …]
/packages/apps/Contacts/src/com/android/contacts/
DContactTileLoaderFactory.java46 public final static int PINNED = 9; field in ContactTileLoaderFactory
80 Contacts.PINNED, // .......................................9
/packages/apps/Dialer/java/com/android/dialer/app/list/
DPhoneFavoritesTileAdapter.java204 int pinnedColumn = cursor.getColumnIndexOrThrow(Contacts.PINNED); in saveCursorToCache()
542 values.put(Contacts.PINNED, PinnedPositions.DEMOTED); in unstarAndUnpinContact()
635 values.put(Contacts.PINNED, databasePinnedPosition); in getReflowedPinningOperations()
/packages/apps/Dialer/java/com/android/contacts/common/
DContactTileLoaderFactory.java50 Contacts.PINNED,
/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DContact.java136 int pinnedColumn = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.PINNED); in fromCursor()
/packages/apps/Dialer/java/com/android/dialer/databasepopulator/
DContactsPopulator.java194 ContactsContract.RawContacts.PINNED, in addContact()
/packages/apps/Dialer/java/com/android/dialer/speeddial/loader/
DSpeedDialUiItemMutator.java611 values.put(Contacts.PINNED, databasePinnedPosition); in updatePinnedPosition()