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

  /packages/apps/Dialer/java/com/android/contacts/common/
GroupMetaData.java 39 boolean favorites) {
46 this.mFavorites = favorites;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMetaData.java 55 public final boolean favorites; field in class:GroupMetaData
80 this.favorites = getBoolean(cursor, GroupMetaDataLoader.FAVORITES);
97 favorites = source.readInt() == 1;
111 dest.writeInt(favorites ? 1 : 0);
138 .add("favorites", favorites)
GroupUtil.java 54 + Groups.AUTO_ADD + "=0 AND " + Groups.FAVORITES + "=0";
304 public final int favorites; field in class:GroupUtil.GroupsProjection
317 favorites = cursor.getColumnIndex(Groups.FAVORITES);
332 favorites = list.indexOf(Groups.FAVORITES);
  /packages/apps/Car/Radio/src/com/android/car/radio/storage/
RadioDatabase.java 54 void insertAll(Favorite... favorites);
73 * Returns a list of all user stored radio favorites sorted by primary identifier.
78 return Transformations.map(favoriteDao().loadAll(), favorites ->
79 favorites.stream().map(Favorite::toProgram).collect(Collectors.toList()));
RadioStorage.java 127 List<Program> favorites = mFavorites.getValue(); local
128 if (favorites != null) return favorites;
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListAdapter.java 381 final Set<Integer> favorites = new HashSet<>(); local
382 favorites.add(cursor.getInt(ContactQuery.CONTACT_ID));
385 || favorites.contains(cursor.getInt(ContactQuery.CONTACT_ID))) {
388 favorites.add(cursor.getInt(ContactQuery.CONTACT_ID));
390 setFavoritesSectionHeader(favorites.size());
  /packages/apps/Car/libs/car-broadcastradio-support/src/com/android/car/broadcastradio/support/media/
BrowseTree.java 79 * to favorites (not necessarily available to tune at the moment).
301 * Updates favorites list.
303 public void setFavorites(@Nullable Set<Program> favorites) {
305 boolean rootChanged = (mFavorites == null) != (favorites == null);
306 mFavorites = favorites;
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java 642 final boolean favorites =
643 !cursor.isNull(GroupQuery.FAVORITES) && cursor.getInt(GroupQuery.FAVORITES) != 0;
647 accountName, accountType, dataSet, groupId, title, defaultGroup, favorites));
    [all...]
  /packages/providers/ContactsProvider/tests/assets/upgradeTest/
contacts2_1108.sql 38 CREATE TABLE groups (_id INTEGER PRIMARY KEY AUTOINCREMENT,package_id INTEGER REFERENCES package(_id),account_id INTEGER REFERENCES accounts(_id),sourceid TEXT,version INTEGER NOT NULL DEFAULT 1,dirty INTEGER NOT NULL DEFAULT 0,title TEXT,title_res INTEGER,notes TEXT,system_id TEXT,deleted INTEGER NOT NULL DEFAULT 0,group_visible INTEGER NOT NULL DEFAULT 0,should_sync INTEGER NOT NULL DEFAULT 1,auto_add INTEGER NOT NULL DEFAULT 0,favorites INTEGER NOT NULL DEFAULT 0,group_is_read_only INTEGER NOT NULL DEFAULT 0,sync1 TEXT, sync2 TEXT, sync3 TEXT, sync4 TEXT );
148 CREATE VIEW view_groups AS SELECT groups._id AS _id,groups.account_id AS account_id,accounts.account_name AS account_name,accounts.account_type AS account_type,accounts.data_set AS data_set,(CASE WHEN accounts.data_set IS NULL THEN accounts.account_type ELSE accounts.account_type||'/'||accounts.data_set END) AS account_type_and_data_set,sourceid,version,dirty,title,title_res,notes,system_id,deleted,group_visible,should_sync,auto_add,favorites,group_is_read_only,sync1,sync2,sync3,sync4,package AS res_package FROM groups JOIN accounts ON (groups.account_id=accounts._id) LEFT OUTER JOIN packages ON (groups.package_id=packages._id);
    [all...]

Completed in 736 milliseconds