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

1 2

  /packages/apps/Contacts/src/com/android/contacts/
ContactTileLoaderFactory.java 34 public final static int STARRED = 2;
48 Contacts.STARRED, // ......................................2
64 Contacts.STARRED, // ......................................2
85 Contacts.STARRED + "=?", new String[]{"1"}, Contacts.DISPLAY_NAME + " ASC");
90 Contacts.STARRED + "=?", new String[]{"0"}, null);
ContactLoader.java 188 boolean starred, Integer presence, boolean sendToVoicemail, String customRingtone,
208 mStarred = starred;
499 Contacts.STARRED,
571 public final static int STARRED = 7;
855 final boolean starred = cursor.getInt(ContactQuery.STARRED) != 0;
    [all...]
ContactPhotoManager.java 848 Contacts.STARRED + " DESC, " + Contacts.LAST_TIME_CONTACTED + " DESC");
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsListLoader.java 33 Contacts.STARRED, // 4
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactTileAdapter.java 60 * Index of the first NON starred contact in the {@link Cursor}
89 * Displays a mixed view type of starred and frequent contacts
94 * Displays a mixed view type of starred and frequent contacts based on phone data.
100 * Display only starred contacts
171 mStarredIndex = ContactTileLoaderFactory.STARRED;
194 * Returns position of the first NON Starred Contact
224 // There are not NON Starred contacts in cursor
291 // Takes numbers of rows the Starred Contacts Occupy
300 // Return the number of starred plus frequent rows
415 case ViewTypes.STARRED
    [all...]
LegacyContactListAdapter.java 37 People.STARRED, // 3
DefaultContactListAdapter.java 160 selection.append(Contacts.STARRED + "!=0");
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 37 Contacts.STARRED, // 2
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyContactImporter.java 341 "_id", NAME_SQL, "notes", "times_contacted", "last_time_contacted", "starred",
348 "_id", NAME_SQL, "notes", "times_contacted", "last_time_contacted", "starred",
355 "_id", "name", "notes", "times_contacted", "last_time_contacted", "starred",
362 "_id", "name", "notes", "times_contacted", "last_time_contacted", "starred",
373 static int STARRED = 5;
398 RawContacts.STARRED + "," +
414 int STARRED = 7;
430 Contacts.STARRED + "," +
439 int STARRED = 5;
547 insert.bindLong(RawContactsInsert.STARRED,
    [all...]
ContactAggregator.java 320 + Contacts.STARRED + "=(SELECT (CASE WHEN COUNT(" + RawContacts.STARRED
323 + RawContacts.STARRED + "=1)" + " WHERE " + Contacts._ID + "=?");
    [all...]
DataRowHandlerForGroupMembership.java 84 updateRawContactsStar(db, rawContactId, true /* starred */);
107 private void updateRawContactsStar(SQLiteDatabase db, long rawContactId, boolean starred) {
109 rawContactValues.put(RawContacts.STARRED, starred ? 1 : 0);
133 updateRawContactsStar(db, rawContactId, false /* starred */);
LegacyApiSupport.java 375 peopleProjectionMap.put(People.STARRED, People.STARRED);
576 Tables.RAW_CONTACTS + "." + RawContacts.STARRED
577 + " AS " + People.STARRED + ", " +
    [all...]
GlobalSearchSupport.java 96 "(CASE WHEN contacts." + Contacts.STARRED + "=1 THEN 0 ELSE 1 END), "