/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator2.java | 466 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange() 512 AggregateExceptionQuery.COLUMNS, in updateMatchScoresBasedOnExceptions() 557 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnIdentityMatch() 581 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnNameMatches() 611 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS, in updateMatchScoresBasedOnEmailMatches() 643 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null, in updateMatchScoresBasedOnNameMatches() 668 Cursor c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() 717 String[] COLUMNS = new String[] { field 738 final Cursor c = db.query(ContactNameLookupQuery.TABLE, ContactNameLookupQuery.COLUMNS, in matchAllCandidates() 764 final String[] COLUMNS = new String[] { field [all …]
|
D | AbstractContactAggregator.java | 553 public static final String[] COLUMNS = {RawContacts._ID, RawContacts.AGGREGATION_MODE}; field in AbstractContactAggregator.RawContactIdAndAggregationModeQuery 567 RawContactIdAndAggregationModeQuery.COLUMNS, in markContactForAggregation() 648 public static final String[] COLUMNS = { field in AbstractContactAggregator.RawContactIdAndAccountQuery 672 RawContactIdAndAccountQuery.COLUMNS, RawContactIdAndAccountQuery.SELECTION, in aggregateContact() 879 public static final String[] COLUMNS = {RawContacts._ID, RawContactsColumns.ACCOUNT_ID }; field in AbstractContactAggregator.RawContactIdQuery 929 String[] COLUMNS = { field 955 AggregateExceptionPrefetchQuery.COLUMNS, in prefetchAggregationExceptionIds() 979 String[] COLUMNS = new String[] { field 992 Cursor c = db.query(NameLookupQuery.TABLE, NameLookupQuery.COLUMNS, in loadNameMatchCandidates() 1015 String[] COLUMNS = { field [all …]
|
D | ContactAggregator.java | 483 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange() 529 String[] COLUMNS = { field 563 AggregateExceptionQuery.COLUMNS, in pickBestMatchBasedOnExceptions() 703 final String[] COLUMNS = new String[] { field 717 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnIdentityMatch() 744 String[] COLUMNS = new String[] { field 763 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnNameMatches() 788 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS, in updateMatchScoresBasedOnEmailMatches() 805 Cursor c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() 849 String[] COLUMNS = new String[] { field [all …]
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
D | SuggestionCursorBackedCursor.java | 29 public static final String[] COLUMNS = { field in SuggestionCursorBackedCursor 77 ArrayList<String> allColumns = new ArrayList<String>(COLUMNS.length + in getColumnNames() 80 allColumns.addAll(Arrays.asList(COLUMNS)); in getColumnNames() 84 return COLUMNS; in getColumnNames() 99 int extraColumn = columnIdx - COLUMNS.length; in getExtra() 123 if (column < COLUMNS.length) { in getString() 153 + " of " + COLUMNS.length); in getString()
|
/packages/apps/Launcher3/ |
D | print_db.py | 12 COLUMNS = 4 variable 150 global SCREENS, COLUMNS, ROWS, HOTSEAT_SIZE 171 COLUMNS = max(COLUMNS, d["cellX"] + d["spanX"]) 251 for k in range(0,COLUMNS): 289 global SCREENS, COLUMNS, ROWS, HOTSEAT_SIZE 292 COLUMNS = 6 297 COLUMNS = 8
|
D | fill_screens.py | 10 COLUMNS = 4 variable 63 for y in range(COLUMNS):
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
D | ContactLoader.java | 116 static final String[] COLUMNS = new String[] { field in ContactLoader.ContactQuery 265 static final String[] COLUMNS = new String[] { field in ContactLoader.DirectoryQuery 283 static final String[] COLUMNS = new String[] { field in ContactLoader.GroupQuery 464 Cursor cursor = resolver.query(entityUri, ContactQuery.COLUMNS, null, null, in loadContactEntity() 728 values.put(ContactQuery.COLUMNS[index], cursor.getLong(index)); in cursorColumnToContentValues() 731 values.put(ContactQuery.COLUMNS[index], cursor.getString(index)); in cursorColumnToContentValues() 734 values.put(ContactQuery.COLUMNS[index], cursor.getBlob(index)); in cursorColumnToContentValues() 746 DirectoryQuery.COLUMNS, null, null, null); in loadDirectoryMetaData() 842 GroupQuery.COLUMNS, selection.toString(), selectionArgs.toArray(new String[0]), in loadGroupMetaData()
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
D | ContactsListLoader.java | 28 public static final String[] COLUMNS = new String[] { field in ContactsListLoader 47 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, in newVisibleContactsLoader() 52 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null, null); in newStrequentContactsLoader() 57 return new CursorLoader(context, uri, COLUMNS, null, null, Contacts.SORT_KEY_PRIMARY); in newContactGroupLoader()
|
D | GroupsListLoader.java | 27 public static final String[] COLUMNS = new String[] { field in GroupsListLoader 36 super(context, Groups.CONTENT_URI, COLUMNS, null, null, Groups.TITLE); in GroupsListLoader()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
D | ContactTileLoaderFactory.java | 52 private static final String[] COLUMNS = new String[] { field in ContactTileLoaderFactory 86 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null, in createStrequentLoader() 98 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, Contacts.STARRED + "=?", in createStarredLoader() 103 return new CursorLoader(context, Contacts.CONTENT_FREQUENT_URI, COLUMNS, in createFrequentLoader()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | CommonNicknameCache.java | 50 public final static String[] COLUMNS = new String[] { field in CommonNicknameCache.NicknameLookupPreloadQuery 72 NicknameLookupPreloadQuery.COLUMNS, in preloadNicknameBloomFilter() 125 String[] COLUMNS = new String[] { field 134 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS, in loadNicknameClusters()
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
D | ConfirmAddDetailActivity.java | 149 final String[] COLUMNS = new String[] { field 166 final String[] COLUMNS = new String[] { field 179 final String[] COLUMNS = new String[] { field 314 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS, in startContactQuery() 327 PhotoQuery.COLUMNS, null, null, null); in startPhotoQuery() 363 ExtraInfoQuery.COLUMNS, RawContacts.CONTACT_ID + " = ?", in startExtraInfoQuery()
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/ |
D | ContactHeaderWidget.java | 95 String[] COLUMNS = new String[] { field 124 String[] COLUMNS = new String[] { field 591 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS, in startContactQuery() 610 ContentUris.withAppendedId(Data.CONTENT_URI, photoId), PhotoQuery.COLUMNS, in startPhotoQuery()
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | GroupListLoader.java | 31 private final static String[] COLUMNS = new String[] { field in GroupListLoader 50 super(context, GROUP_LIST_URI, COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND " in GroupListLoader()
|
D | GroupMetaDataLoader.java | 29 private final static String[] COLUMNS = new String[] { field in GroupMetaDataLoader 52 super(context, ensureIsGroupUri(groupUri), COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND " in GroupMetaDataLoader()
|
/packages/apps/Launcher2/ |
D | fill_screens.py | 10 COLUMNS = 4 variable 63 for y in range(COLUMNS):
|
D | print_db.py | 10 COLUMNS = 4 variable 190 for k in range(0,COLUMNS):
|
/packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/ |
D | SpammySuggestionProvider.java | 32 private static final String[] COLUMNS = { field in SpammySuggestionProvider 50 MatrixCursor cursor = new MatrixCursor(COLUMNS); in query()
|
/packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/ |
D | SlowSuggestionProvider.java | 32 private static final String[] COLUMNS = { field in SlowSuggestionProvider 56 MatrixCursor cursor = new MatrixCursor(COLUMNS); in query()
|
/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/ |
D | CrashingSuggestionProvider.java | 32 private static final String[] COLUMNS = { field in CrashingSuggestionProvider 65 MatrixCursor cursor = new MatrixCursor(COLUMNS); in query()
|
D | HangingSuggestionProvider.java | 32 private static final String[] COLUMNS = { field in HangingSuggestionProvider 57 MatrixCursor cursor = new MatrixCursor(COLUMNS); in query()
|
/packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/ |
D | PartialSuggestionProvider.java | 40 private static final String[] COLUMNS = { field in PartialSuggestionProvider 108 MutableMatrixCursor cursor = new MutableMatrixCursor(COLUMNS); in query()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelper.java | 738 public static final String COLUMNS[] = { field 757 public static final String COLUMNS[] = { field 774 public static final String COLUMNS[] = { field 791 public static final String COLUMNS[] = { field 803 String COLUMNS[] = { field 876 String COLUMNS[] = { field 3142 StructName205Query.COLUMNS, in upgradeStructuredNamesToVersion205() 3224 Cursor cursor = db.query(Organization205Query.TABLE, Organization205Query.COLUMNS, in upgradeOrganizationsToVersion205() 3282 Cursor cursor = db.query(Upgrade303Query.TABLE, Upgrade303Query.COLUMNS, in upgradeEmailToVersion303() 3318 Cursor cursor = db.query(Upgrade303Query.TABLE, Upgrade303Query.COLUMNS, in upgradeNicknameToVersion303() [all …]
|
D | ContactsProvider2.java | 504 String[] COLUMNS = new String[] { field 3030 Cursor c = query(dataUri, DataRowHandler.DataDeleteQuery.COLUMNS, in deleteData() 3058 Cursor c = query(Data.CONTENT_URI, DataRowHandler.DataDeleteQuery.COLUMNS, Data._ID + "=?", in deleteData() 4194 String[] COLUMNS = new String[] { field 4241 final Cursor c = db.query(GroupAccountQuery.TABLE, GroupAccountQuery.COLUMNS, in updateGroups() 4353 Cursor cursor = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS, in updateRawContact() 4470 DataRowHandler.DataUpdateQuery.COLUMNS, in updateData() 5132 public static final String[] COLUMNS = new String[] { field in ContactsProvider2.DirectoryQuery 5154 Tables.DIRECTORIES, DirectoryQuery.COLUMNS, null, null, null, null, null); in getDirectoryAuthority() 6925 public static final String[] COLUMNS = new String[] { field in ContactsProvider2.AddressBookIndexQuery [all …]
|
/packages/apps/Browser/src/com/android/browser/search/ |
D | OpenSearchSearchEngine.java | 65 private static final String[] COLUMNS = new String[] { field in OpenSearchSearchEngine 238 return (mDescriptions != null ? COLUMNS : COLUMNS_WITHOUT_DESCRIPTION); in getColumnNames()
|