/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
H A D | ContactTileLoaderFactory.java | 33 public final static int STARRED = 2; field in class:ContactTileLoaderFactory 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/ |
H A D | ContactTileAdapter.java | 158 mStarredIndex = ContactTileLoaderFactory.STARRED; 438 case ViewTypes.STARRED: 460 * are {@link ViewTypes#STARRED}. 468 return ViewTypes.STARRED; 483 return ViewTypes.STARRED; 537 // We override onMeasure() for STARRED and we don't care the layout param there. 558 case ViewTypes.STARRED: 577 case ViewTypes.STARRED: 605 case ViewTypes.STARRED: 658 public static final int STARRED field in class:ContactTileAdapter.ViewTypes [all...] |
H A D | DefaultContactListAdapter.java | 161 selection.append(Contacts.STARRED + "!=0");
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
H A D | GroupMemberTileAdapter.java | 56 return ViewTypes.STARRED;
|
H A D | LegacyContactListAdapter.java | 40 People.STARRED, // 3
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
H A D | ContactsListLoader.java | 33 Contacts.STARRED, // 4
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
H A D | ContactsProvider2TransactionTest.java | 181 b.withValue(RawContacts.STARRED, 1); 210 b.withValue(RawContacts.STARRED, 1);
|
H A D | 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/ |
H A D | DialerDatabaseHelper.java | 105 static final String STARRED = "starred"; field in interface:DialerDatabaseHelper.SmartDialDbColumns 141 Contacts.STARRED, // 10 213 Tables.SMARTDIAL_TABLE + "." + SmartDialDbColumns.STARRED + " DESC, " 356 SmartDialDbColumns.STARRED + " INTEGER, " + 614 SmartDialDbColumns.STARRED + ", " + 822 SmartDialDbColumns.STARRED + ", " +
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
H A D | UIProvider.java | 741 public static final int STARRED = 1 << 7; field in class:UIProvider.FolderType 966 ConversationColumns.STARRED, 1141 public static final String STARRED = "starred"; field in class:UIProvider.ConversationColumns 1512 MessageColumns.STARRED, 1729 public static final String STARRED = "starred"; field in class:UIProvider.MessageColumns
|
H A D | Conversation.java | 130 * @see UIProvider.ConversationColumns#STARRED 543 } else if (ConversationColumns.STARRED.equals(key)) {
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
H A D | ContactLoader.java | 123 Contacts.STARRED, 195 public static final int STARRED = 7; field in class:ContactLoader.ContactQuery 615 final boolean starred = cursor.getInt(ContactQuery.STARRED) != 0; 658 cursorColumnToContentValues(cursor, cv, ContactQuery.STARRED);
|
H A D | RawContact.java | 268 return getValues().getAsBoolean(Contacts.STARRED);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
H A D | ContactAggregator.java | 334 + Contacts.STARRED + "=(SELECT (CASE WHEN COUNT(" + RawContacts.STARRED 337 + RawContacts.STARRED + "=1)" + " WHERE " + Contacts._ID + "=?"); 1729 + RawContacts.STARRED + "," 1765 int STARRED = 11; field in interface:ContactAggregator.RawContactsQuery 1785 + Contacts.STARRED + "=?, " 1801 + Contacts.STARRED + ", " 1816 int STARRED = 8; field in interface:ContactAggregator.ContactReplaceSqlStatement 1913 if (c.getInt(RawContactsQuery.STARRED) != 0) { 1987 statement.bindLong(ContactReplaceSqlStatement.STARRED, [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
H A D | SelectedConversationsActionMenu.java | 158 if (mFolder.isType(UIProvider.FolderType.STARRED)) { 332 mUpdater.updateConversation(target, ConversationColumns.STARRED, star);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/ |
H A D | ContactHeaderWidget.java | 101 Contacts.STARRED, 115 int STARRED = 5; field in interface:ContactHeaderWidget.ContactQuery
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
H A D | DataRowHandlerForGroupMembership.java | 106 rawContactValues.put(RawContacts.STARRED, starred ? 1 : 0);
|
H A D | ContactsProvider2.java | 433 "SELECT " + RawContacts.STARRED 558 Contacts.STARRED + " DESC, " 614 .add(Contacts.STARRED) 802 .add(RawContacts.STARRED) 816 .add(RawContacts.STARRED) 894 .add(PhoneLookup.STARRED, "contacts_view." + Contacts.STARRED) 2669 if (flagIsSet(values, RawContacts.STARRED)) { 3074 new String[]{RawContacts._ID, RawContacts.STARRED}, 4380 if (flagExists(values, RawContacts.STARRED)) { [all...] |
H A D | LegacyApiSupport.java | 378 peopleProjectionMap.put(People.STARRED, People.STARRED); 579 Tables.RAW_CONTACTS + "." + RawContacts.STARRED 580 + " AS " + People.STARRED + ", " + 1366 ContactsDatabaseHelper.copyLongValue(mValues, RawContacts.STARRED, 1367 values, People.STARRED);
|
H A D | ContactsDatabaseHelper.java | 364 public static final String CONCRETE_STARRED = Tables.CONTACTS + "." + Contacts.STARRED; 411 Tables.RAW_CONTACTS + "." + RawContacts.STARRED; 983 Contacts.STARRED + " INTEGER NOT NULL DEFAULT 0," + 1014 RawContacts.STARRED + " INTEGER NOT NULL DEFAULT 0," + 1643 + " AS " + RawContacts.STARRED + "," 1712 + RawContacts.STARRED + "," 1752 + " AS " + Contacts.STARRED + ", " 1782 + RawContactsColumns.CONCRETE_STARRED + " AS " + RawContacts.STARRED + ","
|
/packages/apps/Dialer/src/com/android/dialer/list/ |
H A D | PhoneFavoritesTileAdapter.java | 198 mStarredIndex = ContactTileLoaderFactory.STARRED; 788 // We override onMeasure() for STARRED and we don't care the layout param there. 1070 values.put(Contacts.STARRED, false);
|
/packages/apps/Contacts/tests/src/com/android/contacts/model/ |
H A D | ContactLoaderTest.java | 296 Contacts.PHOTO_ID, Contacts.STARRED, Contacts.CONTACT_PRESENCE,
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ |
H A D | AllIntentsActivity.java | 583 Contacts.HAS_PHONE_NUMBER + "!=0 AND " + Contacts.STARRED + "!=0" ,
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
H A D | PeopleActivity.java | 1148 values.put(Contacts.STARRED, 1); 1155 values.put(Contacts.STARRED, 0);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
H A D | AbstractActivityController.java | 1881 ConversationColumns.STARRED, conversationStarred); 1885 values.put(UIProvider.MessageColumns.STARRED, starred ? 1 : 0); 2828 mConversationListCursor.updateBoolean(mTarget, ConversationColumns.STARRED, 3191 if (folder.isType(UIProvider.FolderType.STARRED)) { 3197 if (mFolder.isType(UIProvider.FolderType.STARRED)) { 3303 values.put(ConversationColumns.STARRED, true);
|