HomeSort by relevance Sort by last modified time
    Searched refs:STARRED (Results 1 - 25 of 50) sorted by null

1 2

  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactTileLoaderFactory.java 33 public final static int STARRED = 2;
53 Contacts.STARRED, // ......................................2
69 Contacts.STARRED, // ......................................2
95 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, Contacts.STARRED + "=?",
101 Contacts.STARRED + "=?", new String[]{"0"}, null);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactTileAdapter.java 56 * Index of the first NON starred contact in the {@link Cursor}
86 * Displays a mixed view type of starred and frequent contacts
91 * Displays a mixed view type of starred and frequent contacts based on phone data.
97 * Display only starred contacts
158 mStarredIndex = ContactTileLoaderFactory.STARRED;
210 * Returns position of the first NON Starred Contact
239 // There are not NON Starred contacts in cursor
313 // Takes numbers of rows the Starred Contacts Occupy
320 // Return the number of starred plus frequent rows
438 case ViewTypes.STARRED
    [all...]
DefaultContactListAdapter.java 161 selection.append(Contacts.STARRED + "!=0");
  /packages/apps/Contacts/src/com/android/contacts/list/
GroupMemberTileAdapter.java 56 return ViewTypes.STARRED;
LegacyContactListAdapter.java 40 People.STARRED, // 3
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsListLoader.java 33 Contacts.STARRED, // 4
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 37 Contacts.STARRED, // 2
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2TransactionTest.java 181 b.withValue(RawContacts.STARRED, 1);
210 b.withValue(RawContacts.STARRED, 1);
ContactsProvider2Test.java 132 Contacts.STARRED,
172 Contacts.STARRED,
216 Contacts.STARRED,
264 Contacts.STARRED,
318 RawContacts.STARRED,
389 Contacts.STARRED,
466 Contacts.STARRED,
556 Contacts.STARRED,
599 RawContacts.STARRED,
637 PhoneLookup.STARRED,
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/database/
DialerDatabaseHelper.java 106 static final String STARRED = "starred";
142 Contacts.STARRED, // 10
214 Tables.SMARTDIAL_TABLE + "." + SmartDialDbColumns.STARRED + " DESC, "
357 SmartDialDbColumns.STARRED + " INTEGER, " +
615 SmartDialDbColumns.STARRED + ", " +
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProvider.java     [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_ContactsTest.java 152 values.put(ContactsContract.Contacts.STARRED, 1);
ContactsContract_RawContactsTest.java 148 values.put(ContactsContract.RawContacts.STARRED, 1);
  /frameworks/base/core/java/com/android/internal/notification/
DemoContactNotificationScorer.java 36 * display names of starred contacts. The references it picks up are spannable strings which, in
37 * their entirety, match the display name of some starred contact. The magnitude of the bump ranges
121 + ContactsContract.Contacts.STARRED+" ='1'";
179 Slog.v(TAG, "Notification references starred contact. Promoted!");
181 Slog.v(TAG, "Notification lacks any starred contact reference. Not promoted!");
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java 123 Contacts.STARRED,
195 public static final int STARRED = 7;
380 false /* starred */,
615 final boolean starred = cursor.getInt(ContactQuery.STARRED) != 0;
633 altDisplayName, phoneticName, starred, presence, sendToVoicemail,
658 cursorColumnToContentValues(cursor, cv, ContactQuery.STARRED);
    [all...]
RawContact.java 268 return getValues().getAsBoolean(Contacts.STARRED);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 334 + Contacts.STARRED + "=(SELECT (CASE WHEN COUNT(" + RawContacts.STARRED
337 + RawContacts.STARRED + "=1)" + " WHERE " + Contacts._ID + "=?");
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SelectedConversationsActionMenu.java 158 if (mFolder.isType(UIProvider.FolderType.STARRED)) {
159 LogUtils.d(LOG_TAG, "We are in a starred folder, removing the star");
162 LogUtils.d(LOG_TAG, "Not in a starred folder.");
332 mUpdater.updateConversation(target, ConversationColumns.STARRED, star);
335 c.starred = star;
362 if (!conversation.starred) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 101 Contacts.STARRED,
115 int STARRED = 5;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 81 updateRawContactsStar(db, rawContactId, true /* starred */);
104 private void updateRawContactsStar(SQLiteDatabase db, long rawContactId, boolean starred) {
106 rawContactValues.put(RawContacts.STARRED, starred ? 1 : 0);
130 updateRawContactsStar(db, rawContactId, false /* starred */);
ContactsProvider2.java 433 "SELECT " + RawContacts.STARRED
549 * Sorting order for email address suggestions: first starred, then the rest.
558 Contacts.STARRED + " DESC, "
614 .add(Contacts.STARRED)
    [all...]
LegacyApiSupport.java 378 peopleProjectionMap.put(People.STARRED, People.STARRED);
579 Tables.RAW_CONTACTS + "." + RawContacts.STARRED
580 + " AS " + People.STARRED + ", " +
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoritesTileAdapter.java 123 * NOTE This soft limit would not restrict the number of starred contacts to show, rather
124 * 1. If the count of starred contacts is less than this limit, show 20 tiles total.
125 * 2. If the count of starred contacts is more than or equal to this limit,
126 * show all starred tiles and no frequents.
198 mStarredIndex = ContactTileLoaderFactory.STARRED;
264 final int starred = cursor.getInt(mStarredIndex); local
267 // We display a maximum of TILES_SOFT_LIMIT contacts, or the total number of starred
269 if (starred < 1 && counter >= TILES_SOFT_LIMIT) {
328 * Returns position of the first NON Starred Contact
340 // There are not NON Starred contacts in curso
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
AllIntentsActivity.java 583 Contacts.HAS_PHONE_NUMBER + "!=0 AND " + Contacts.STARRED + "!=0" ,
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ContactLoaderTest.java 296 Contacts.PHOTO_ID, Contacts.STARRED, Contacts.CONTACT_PRESENCE,

Completed in 629 milliseconds

1 2