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

1 2

  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactTileLoaderFactory.java 33 public final static int STARRED = 2;
47 Contacts.STARRED, // ......................................2
63 Contacts.STARRED, // ......................................2
86 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, Contacts.STARRED + "=?",
92 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
312 // Takes numbers of rows the Starred Contacts Occupy
319 // Return the number of starred plus frequent rows
437 case ViewTypes.STARRED
    [all...]
DefaultContactListAdapter.java 161 selection.append(Contacts.STARRED + "!=0");
  /packages/apps/Contacts/src/com/android/contacts/list/
GroupMemberTileAdapter.java 55 return ViewTypes.STARRED;
LegacyContactListAdapter.java 40 People.STARRED, // 3
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsListLoader.java 33 Contacts.STARRED, // 4
  /packages/apps/Email/src/com/android/mail/providers/
UIProvider.java 531 public static final int STARRED = 7;
665 ConversationColumns.STARRED,
    [all...]
  /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 131 Contacts.STARRED,
170 Contacts.STARRED,
213 Contacts.STARRED,
258 Contacts.STARRED,
311 RawContacts.STARRED,
381 Contacts.STARRED,
457 Contacts.STARRED,
546 Contacts.STARRED,
588 RawContacts.STARRED,
626 PhoneLookup.STARRED,
    [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);
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 123 Contacts.STARRED,
195 public static final int STARRED = 7;
511 final boolean starred = cursor.getInt(ContactQuery.STARRED) != 0;
529 altDisplayName, phoneticName, starred, presence, sendToVoicemail,
554 cursorColumnToContentValues(cursor, cv, ContactQuery.STARRED);
    [all...]
RawContact.java 272 return getValues().getAsBoolean(Contacts.STARRED);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 331 + Contacts.STARRED + "=(SELECT (CASE WHEN COUNT(" + RawContacts.STARRED
334 + RawContacts.STARRED + "=1)" + " WHERE " + Contacts._ID + "=?");
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 101 Contacts.STARRED,
115 int STARRED = 5;
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialCache.java 133 Contacts.STARRED + " DESC, "
  /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 */);
LegacyApiSupport.java 378 peopleProjectionMap.put(People.STARRED, People.STARRED);
579 Tables.RAW_CONTACTS + "." + RawContacts.STARRED
580 + " AS " + People.STARRED + ", " +
    [all...]
ContactsProvider2.java 427 "SELECT " + RawContacts.STARRED
519 * Sorting order for email address suggestions: first starred, then the rest.
528 Contacts.STARRED + " DESC, "
584 .add(Contacts.STARRED)
2637 final Long starred = values.getAsLong(RawContacts.STARRED); local
    [all...]
ContactsDatabaseHelper.java 362 public static final String CONCRETE_STARRED = Tables.CONTACTS + "." + Contacts.STARRED;
408 Tables.RAW_CONTACTS + "." + RawContacts.STARRED;
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
ContactLoaderTest.java 296 Contacts.PHOTO_ID, Contacts.STARRED, Contacts.CONTACT_PRESENCE,
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
AllIntentsActivity.java 583 Contacts.HAS_PHONE_NUMBER + "!=0 AND " + Contacts.STARRED + "!=0" ,
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java     [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 822 * Is the contact starred?
825 public static final String STARRED = "starred";
    [all...]

Completed in 309 milliseconds

1 2