Home
last modified time | relevance | path

Searched refs:STARRED (Results 1 – 25 of 41) sorted by relevance

12

/packages/apps/Contacts/src/com/android/contacts/
DContactTileLoaderFactory.java35 public final static int STARRED = 2; field in ContactTileLoaderFactory
56 Contacts.STARRED, // ......................................2
73 Contacts.STARRED, // ......................................2
100 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, Contacts.STARRED + "=?", in createStarredLoader()
106 Contacts.STARRED + "=?", new String[]{"0"}, null); in createFrequentLoader()
/packages/apps/Dialer/java/com/android/dialer/speeddial/
DSpeedDialAdapter.java68 @IntDef({RowType.STARRED_HEADER, RowType.SUGGESTION_HEADER, RowType.STARRED, RowType.SUGGESTION})
73 int STARRED = 3; field
115 case RowType.STARRED: in onCreateViewHolder()
148 case RowType.STARRED: in onBindViewHolder()
196 positionToRowTypeMap.put(i + NON_CONTACT_ITEM_NUMBER_BEFORE_FAVORITES, RowType.STARRED); in updatePositionToRowTypeMap()
224 case RowType.STARRED: in getSpanSizeLookup()
/packages/apps/Dialer/java/com/android/dialer/speeddial/loader/
DSpeedDialUiItem.java54 public static final int STARRED = 3; field in SpeedDialUiItem
66 Phone.STARRED,
79 Phone.STARRED,
121 .setIsStarred(cursor.getInt(STARRED) == 1) in fromCursor()
DSpeedDialUiItemMutator.java174 contentValues.put(Phone.STARRED, 0); in unstarContact()
217 values.put(Phone.STARRED, "1"); in insertNewContactEntry()
505 Selection selection = Selection.column(Phone.STARRED).is("=", 1); in getStarredContacts()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java214 Contacts.STARRED, in testContactsProjection()
255 Contacts.STARRED, in testContactsStrequentProjection()
300 Contacts.STARRED, in testContactsStrequentPhoneOnlyProjection()
349 Contacts.STARRED, in testContactsWithSnippetProjection()
405 RawContacts.STARRED, in testRawContactsProjection()
480 Contacts.STARRED, in testDataProjection()
562 Contacts.STARRED, in testDistinctDataProjection()
656 Contacts.STARRED, in testEntityProjection()
702 RawContacts.STARRED, in testRawEntityProjection()
751 PhoneLookup.STARRED, in testPhoneLookupProjection()
[all …]
DContactsProvider2TransactionTest.java181 b.withValue(RawContacts.STARRED, 1); in addInsertContactOperations()
210 b.withValue(RawContacts.STARRED, 1); in addInsertProfileOperations()
DEnterpriseContactsCursorWrapperTest.java39 /* column 6 */ PhoneLookup.STARRED, in testWrappedResults()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactListAdapter.java53 Contacts.STARRED, // 9
65 Contacts.STARRED, // 8
77 Contacts.STARRED, // 8
90 Contacts.STARRED, // 8
DFavoritesAndContactsLoader.java86 selection.append(Contacts.STARRED + "=?");
DLegacyContactListAdapter.java37 People.STARRED, // 3
DDefaultContactListAdapter.java193 selection.append(Contacts.STARRED + "!=0"); in configureSelection()
/packages/apps/Dialer/java/com/android/dialer/database/
DDialerDatabaseHelper.java139 + SmartDialDbColumns.STARRED in setupTables()
523 + SmartDialDbColumns.STARRED in insertUpdatedContactsAndNumberPrefix()
829 + SmartDialDbColumns.STARRED in updateSmartDialDatabase()
1047 String STARRED = "starred"; field
1090 Contacts.STARRED, // 10
1205 + SmartDialDbColumns.STARRED
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java343 + Contacts.STARRED + "=(SELECT (CASE WHEN COUNT(" + RawContacts.STARRED in AbstractContactAggregator()
346 + RawContacts.STARRED + "=1)" + " WHERE " + Contacts._ID + "=?"); in AbstractContactAggregator()
1280 + RawContacts.STARRED + ","
1316 int STARRED = 11; field
1336 + Contacts.STARRED + "=?, "
1352 + Contacts.STARRED + ", "
1367 int STARRED = 8; field
1464 if (c.getInt(RawContactsQuery.STARRED) != 0) { in computeAggregateData()
1542 statement.bindLong(ContactReplaceSqlStatement.STARRED, in computeAggregateData()
/packages/apps/Dialer/java/com/android/dialer/app/list/
DPhoneFavoritesTileAdapter.java200 int starredColumn = cursor.getColumnIndexOrThrow(Contacts.STARRED); in saveCursorToCache()
347 int starredColumn = cursor.getColumnIndex(Contacts.STARRED); in getNumStarredContacts()
541 values.put(Contacts.STARRED, false); in unstarAndUnpinContact()
/packages/apps/Contacts/src/com/android/contacts/logging/
DListEvent.java66 public static final int STARRED = 7; field in ListEvent.ListType
/packages/apps/Contacts/src/com/android/contacts/model/
DContactLoader.java125 Contacts.STARRED,
204 public static final int STARRED = 7; field in ContactLoader.ContactQuery
594 final boolean starred = cursor.getInt(ContactQuery.STARRED) != 0; in loadContactHeaderData()
636 cursorColumnToContentValues(cursor, cv, ContactQuery.STARRED); in loadRawContactValues()
/packages/apps/Dialer/java/com/android/contacts/common/model/
DContactLoader.java429 final boolean starred = cursor.getInt(ContactQuery.STARRED) != 0; in loadContactHeaderData()
486 cursorColumnToContentValues(cursor, cv, ContactQuery.STARRED); in loadRawContactValues()
796 public static final int STARRED = 7; field in ContactLoader.ContactQuery
863 Contacts.STARRED,
/packages/apps/Dialer/java/com/android/contacts/common/
DContactTileLoaderFactory.java43 Contacts.STARRED,
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/favorite/
DBluetoothFavoriteContactsLiveData.java80 where.append(String.format(" AND %s = 1", ContactsContract.CommonDataKinds.Phone.STARRED)); in getFavoriteQueryParam()
/packages/apps/Car/Dialer/framework/fake/src/com/android/car/dialer/framework/testdata/
DContactDataHandler.java99 .withValue(ContactsContract.RawContacts.STARRED, starred) in addOneContact()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DLegacyApiSupport.java347 peopleProjectionMap.put(People.STARRED, People.STARRED); in peopleProjectionMap.put() argument
550 Tables.RAW_CONTACTS + "." + RawContacts.STARRED in createViews()
551 + " AS " + People.STARRED + ", " + in createViews()
1305 ContactsDatabaseHelper.copyLongValue(mValues, RawContacts.STARRED, in parsePeopleValues()
1306 values, People.STARRED); in parsePeopleValues()
DContactsProvider2.java475 "SELECT " + RawContacts.STARRED
573 Contacts.STARRED + " DESC, "
628 .add(Contacts.STARRED)
817 .add(RawContacts.STARRED)
832 .add(RawContacts.STARRED)
923 .add(PhoneLookup.STARRED, "contacts_view." + Contacts.STARRED)
2948 if (flagIsSet(values, RawContacts.STARRED)) { in insertRawContact()
3303 new String[] {RawContacts._ID, RawContacts.STARRED}, in insertGroup()
4690 if (flagExists(values, RawContacts.STARRED)) { in updateRawContact()
4692 updateFavoritesMembership(rawContactId, flagIsSet(values, RawContacts.STARRED)); in updateRawContact()
[all …]
DDataRowHandlerForGroupMembership.java106 rawContactValues.put(RawContacts.STARRED, starred ? 1 : 0); in updateRawContactsStar()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregatorTest.java826 Contacts.STARRED, 1); in testReAggregateToConnectedComponent()
839 Contacts.STARRED, 1); in testReAggregateToConnectedComponent()
844 Contacts.STARRED, 0); in testReAggregateToConnectedComponent()
849 Contacts.STARRED, 0); in testReAggregateToConnectedComponent()
/packages/apps/Messaging/tests/src/com/android/messaging/util/
DContactUtilTest.java111 values.put(Contacts.STARRED, 1); in addTestContact()

12