Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java143 Contacts.PINNED, in testContactsProjection()
184 Contacts.PINNED, in testContactsStrequentProjection()
229 Contacts.PINNED, in testContactsStrequentPhoneOnlyProjection()
278 Contacts.PINNED, in testContactsWithSnippetProjection()
333 RawContacts.PINNED, in testRawContactsProjection()
404 Contacts.PINNED, in testDataProjection()
482 Contacts.PINNED, in testDistinctDataProjection()
573 Contacts.PINNED, in testEntityProjection()
8279 cv(Contacts._ID, i1.mContactId, Contacts.PINNED, unpinned, Contacts.STARRED, 0), in testPinnedPositionsUpdate()
8280 cv(Contacts._ID, i2.mContactId, Contacts.PINNED, unpinned, Contacts.STARRED, 0), in testPinnedPositionsUpdate()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java356 + Contacts.PINNED + " = IFNULL((SELECT MIN(" + RawContacts.PINNED + ") FROM " in ContactAggregator()
358 + ContactsColumns.CONCRETE_ID + " AND " + RawContacts.PINNED + ">" in ContactAggregator()
388 " SET " + RawContacts.PINNED + "=" + PinnedPositions.UNPINNED + in ContactAggregator()
1996 + RawContacts.PINNED + ","
2032 int PINNED = 12; field
2052 + Contacts.PINNED + "=?, "
2068 + Contacts.PINNED + ", "
2083 int PINNED = 9; field
2185 final int rawContactPinned = c.getInt(RawContactsQuery.PINNED); in computeAggregateData()
2259 statement.bindLong(ContactReplaceSqlStatement.PINNED, in computeAggregateData()
/packages/apps/Dialer/src/com/android/dialer/list/
DPhoneFavoritesTileAdapter.java186 mPinnedIndex = ContactTileLoaderFactory.PINNED; in bindColumnIndices()
530 values.put(Contacts.PINNED, PinnedPositions.DEMOTED); in unstarAndUnpinContact()
621 values.put(Contacts.PINNED, databasePinnedPosition); in getReflowedPinningOperations()
/packages/apps/ContactsCommon/src/com/android/contacts/common/
DContactTileLoaderFactory.java46 public final static int PINNED = 9; field in ContactTileLoaderFactory
79 Contacts.PINNED, // .......................................9
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java530 " SET " + Contacts.PINNED + " = " + PinnedPositions.UNPINNED +
531 " WHERE " + Contacts._ID + " = ?1 AND " + Contacts.PINNED + " <= " +
537 " SET " + RawContacts.PINNED + " = " + PinnedPositions.UNPINNED +
538 " WHERE " + RawContacts.CONTACT_ID + " = ?1 AND " + Contacts.PINNED + " <= " +
636 .add(Contacts.PINNED)
824 .add(RawContacts.PINNED)
2711 if (!values.containsKey(RawContacts.PINNED)) { in insertRawContact()
2712 values.put(RawContacts.PINNED, PinnedPositions.UNPINNED); in insertRawContact()
4548 values, RawContacts.PINNED, in updateContactOptions()
4549 inputValues, Contacts.PINNED); in updateContactOptions()
[all …]
DContactsDatabaseHelper.java389 public static final String CONCRETE_PINNED = Tables.CONTACTS + "." + Contacts.PINNED;
437 Tables.RAW_CONTACTS + "." + RawContacts.PINNED;
1182 Contacts.PINNED + " INTEGER NOT NULL DEFAULT " + PinnedPositions.UNPINNED + "," + in onCreate()
1213 RawContacts.PINNED + " INTEGER NOT NULL DEFAULT " + PinnedPositions.UNPINNED + in onCreate()
1858 + " AS " + RawContacts.PINNED; in createContactsViews()
1926 + RawContacts.PINNED; in createContactsViews()
1967 + " AS " + Contacts.PINNED + ", " in createContactsViews()