/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()
|
D | CursorBackedSuggestionExtras.java | 34 DEFAULT_COLUMNS.addAll(Arrays.asList(SuggestionCursorBackedCursor.COLUMNS)); in Arrays.asList() argument
|
/packages/apps/Launcher3/tools/ |
D | print_db.py | 13 COLUMNS = 4 variable 152 global SCREENS, COLUMNS, ROWS, HOTSEAT_SIZE 173 COLUMNS = max(COLUMNS, d["cellX"] + d["spanX"]) 253 for k in range(0,COLUMNS): 291 global SCREENS, COLUMNS, ROWS, HOTSEAT_SIZE 294 COLUMNS = int(match.group(1)) 296 HOTSEAT_SIZE = 2 * int(COLUMNS / 2)
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator2.java | 468 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange() 514 AggregateExceptionQuery.COLUMNS, in updateMatchScoresBasedOnExceptions() 559 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnIdentityMatch() 583 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS, in updateMatchScoresBasedOnNameMatches() 613 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS, in updateMatchScoresBasedOnEmailMatches() 645 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null, in updateMatchScoresBasedOnNameMatches() 675 c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() 682 c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() 733 String[] COLUMNS = new String[] { field 754 final Cursor c = db.query(ContactNameLookupQuery.TABLE, ContactNameLookupQuery.COLUMNS, in matchAllCandidates() [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() 810 c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() 817 c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS, in updateMatchScoresBasedOnPhoneMatches() [all …]
|
D | AbstractContactAggregator.java | 565 public static final String[] COLUMNS = {RawContacts._ID, RawContacts.AGGREGATION_MODE}; field in AbstractContactAggregator.RawContactIdAndAggregationModeQuery 579 RawContactIdAndAggregationModeQuery.COLUMNS, in markContactForAggregation() 660 public static final String[] COLUMNS = { field in AbstractContactAggregator.RawContactIdAndAccountQuery 684 RawContactIdAndAccountQuery.COLUMNS, RawContactIdAndAccountQuery.SELECTION, in aggregateContact() 891 public static final String[] COLUMNS = {RawContacts._ID, RawContactsColumns.ACCOUNT_ID }; field in AbstractContactAggregator.RawContactIdQuery 945 String[] COLUMNS = { field 971 AggregateExceptionPrefetchQuery.COLUMNS, in prefetchAggregationExceptionIds() 995 String[] COLUMNS = new String[] { field 1008 Cursor c = db.query(NameLookupQuery.TABLE, NameLookupQuery.COLUMNS, in loadNameMatchCandidates() 1031 String[] COLUMNS = { field [all …]
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | ContactTileLoaderFactory.java | 53 private static final String[] COLUMNS = new String[] { field in ContactTileLoaderFactory 88 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null, in createStrequentLoader() 100 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, Contacts.STARRED + "=?", in createStarredLoader() 105 return new CursorLoader(context, Contacts.CONTENT_FREQUENT_URI, COLUMNS, in createFrequentLoader()
|
D | GroupMetaDataLoader.java | 31 public final static String[] COLUMNS = new String[] { field in GroupMetaDataLoader 54 super(context, ensureIsGroupUri(groupUri), COLUMNS, GroupUtil.DEFAULT_SELECTION, null, in GroupMetaDataLoader() 59 super(context, ensureIsGroupUri(groupUri), COLUMNS, selection, null, in GroupMetaDataLoader()
|
D | GroupListLoader.java | 32 private final static String[] COLUMNS = new String[] { field in GroupListLoader 57 COLUMNS, in GroupListLoader()
|
D | SplitAggregateView.java | 56 String[] COLUMNS = new String[] { field 159 SplitQuery.COLUMNS, null, null, null); in loadData()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | CommonNicknameCache.java | 51 public final static String[] COLUMNS = new String[] { field in CommonNicknameCache.NicknameLookupPreloadQuery 73 NicknameLookupPreloadQuery.COLUMNS, in preloadNicknameBloomFilter() 129 String[] COLUMNS = new String[] { field 138 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS, in loadNicknameClusters()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/ |
D | ModelTest.java | 49 private static final String[] COLUMNS = new String[]{ field in ModelTest 82 MatrixCursor c = new MatrixCursor(COLUMNS); in setUp() 114 MatrixCursor cIn1 = new MatrixCursor(COLUMNS); in testModelIdIsUnique() 115 MatrixCursor cIn2 = new MatrixCursor(COLUMNS); in testModelIdIsUnique()
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/ |
D | SortingCursorWrapperTest.java | 58 private static final String[] COLUMNS = new String[]{ field in SortingCursorWrapperTest 117 MatrixCursor c = new MatrixCursor(COLUMNS); in setUp() 230 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_sizesWithBucketing_ascending() 282 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_sizesWithBucketing_descending() 333 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_time_ascending() 370 MatrixCursor c = new MatrixCursor(COLUMNS); in testSort_time_descending() 476 MatrixCursor c = new MatrixCursor(COLUMNS); in testReturnsWrappedExtras()
|
/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | ContactLoader.java | 275 resolver.query(entityUri, ContactQuery.COLUMNS, null, null, Contacts.Entity.RAW_CONTACT_ID); in loadContactEntity() 535 values.put(ContactQuery.COLUMNS[index], cursor.getLong(index)); in cursorColumnToContentValues() 538 values.put(ContactQuery.COLUMNS[index], cursor.getString(index)); in cursorColumnToContentValues() 541 values.put(ContactQuery.COLUMNS[index], cursor.getBlob(index)); in cursorColumnToContentValues() 556 DirectoryQuery.COLUMNS, in loadDirectoryMetaData() 628 GroupQuery.COLUMNS, in loadGroupMetaData() 921 static final String[] COLUMNS; field in ContactLoader.ContactQuery 926 COLUMNS = projectionList.toArray(new String[projectionList.size()]); 939 static final String[] COLUMNS = field in ContactLoader.DirectoryQuery 959 static final String[] COLUMNS = field in ContactLoader.GroupQuery
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | ContactLoader.java | 187 static final String[] COLUMNS; field in ContactLoader.ContactQuery 194 COLUMNS = projectionList.toArray(new String[projectionList.size()]); 272 static final String[] COLUMNS = new String[] { field in ContactLoader.DirectoryQuery 452 Cursor cursor = resolver.query(entityUri, ContactQuery.COLUMNS, null, null, in loadContactEntity() 688 values.put(ContactQuery.COLUMNS[index], cursor.getLong(index)); in cursorColumnToContentValues() 691 values.put(ContactQuery.COLUMNS[index], cursor.getString(index)); in cursorColumnToContentValues() 694 values.put(ContactQuery.COLUMNS[index], cursor.getBlob(index)); in cursorColumnToContentValues() 706 DirectoryQuery.COLUMNS, null, null, null); in loadDirectoryMetaData() 803 GroupMetaDataLoader.COLUMNS, selection.toString(), in loadGroupMetaData()
|
/packages/apps/Launcher3/ |
D | fill_screens.py | 10 COLUMNS = 4 variable 63 for y in range(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/apps/DocumentsUI/tests/common/com/android/documentsui/testing/ |
D | TestModel.java | 36 static final String[] COLUMNS = new String[]{ field in TestModel 62 mCursor = new MatrixCursor(COLUMNS); in reset()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | DataRowHandlerForGroupMembership.java | 47 String[] COLUMNS = new String[] { field 194 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
|
D | DataRowHandler.java | 55 public static final String[] COLUMNS = new String[] { field 71 String[] COLUMNS = { Data._ID, Data.RAW_CONTACT_ID, Data.MIMETYPE }; field
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | AggregationSuggestionEngine.java | 277 public static final String[] COLUMNS = { field in AggregationSuggestionEngine.DataQuery 330 DataQuery.COLUMNS, sb.toString(), null, Data.CONTACT_ID); in loadAggregationSuggestions()
|