Home
last modified time | relevance | path

Searched refs:COLUMNS (Results 1 – 25 of 32) sorted by relevance

12

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionCursorBackedCursor.java29 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()
DCursorBackedSuggestionExtras.java34 DEFAULT_COLUMNS.addAll(Arrays.asList(SuggestionCursorBackedCursor.COLUMNS)); in Arrays.asList() argument
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DContactsListLoader.java28 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()
DGroupsListLoader.java27 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/Contacts/src/com/android/contacts/
DContactTileLoaderFactory.java45 private static final String[] COLUMNS = new String[] { field in ContactTileLoaderFactory
73 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null, null); in createStrequentLoader()
84 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, in createStarredLoader()
89 return new CursorLoader(context, Contacts.CONTENT_FREQUENT_URI, COLUMNS, in createFrequentLoader()
DGroupListLoader.java31 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()
DGroupMetaDataLoader.java29 private final static String[] COLUMNS = new String[] { field in GroupMetaDataLoader
52 super(context, ensureIsGroupUri(groupUri), COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND " in GroupMetaDataLoader()
DContactLoader.java540 final static String[] COLUMNS = new String[] { field in ContactLoader.ContactQuery
689 final static String[] COLUMNS = new String[] { field in ContactLoader.DirectoryQuery
707 final static String[] COLUMNS = new String[] { field in ContactLoader.GroupQuery
778 Cursor cursor = resolver.query(entityUri, ContactQuery.COLUMNS, null, null, in loadContactEntity()
1024 values.put(ContactQuery.COLUMNS[index], cursor.getLong(index)); in cursorColumnToContentValues()
1027 values.put(ContactQuery.COLUMNS[index], cursor.getString(index)); in cursorColumnToContentValues()
1030 values.put(ContactQuery.COLUMNS[index], cursor.getBlob(index)); in cursorColumnToContentValues()
1042 DirectoryQuery.COLUMNS, null, null, null); in loadDirectoryMetaData()
1106 GroupQuery.COLUMNS, selection.toString(), selectionArgs.toArray(new String[0]), in loadGroupMetaData()
DSplitAggregateView.java59 String[] COLUMNS = new String[] { field
162 SplitQuery.COLUMNS, null, null, null); in loadData()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DCommonNicknameCache.java50 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/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java538 public static final String[] COLUMNS = { RawContacts._ID, RawContacts.AGGREGATION_MODE }; field in ContactAggregator.RawContactIdAndAggregationModeQuery
552 RawContactIdAndAggregationModeQuery.COLUMNS, in markContactForAggregation()
631 public static final String[] COLUMNS = { field in ContactAggregator.RawContactIdAndAccountQuery
655 RawContactIdAndAccountQuery.COLUMNS, RawContactIdAndAccountQuery.SELECTION, in aggregateContact()
1007 public static final String[] COLUMNS = { RawContacts._ID }; field in ContactAggregator.RawContactIdQuery
1037 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange()
1102 String[] COLUMNS = { field
1128 AggregateExceptionPrefetchQuery.COLUMNS, in prefetchAggregationExceptionIds()
1152 String[] COLUMNS = { field
1186 AggregateExceptionQuery.COLUMNS, in pickBestMatchBasedOnExceptions()
[all …]
/packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
DSpammySuggestionProvider.java32 private static final String[] COLUMNS = { field in SpammySuggestionProvider
50 MatrixCursor cursor = new MatrixCursor(COLUMNS); in query()
/packages/apps/Launcher2/
Dfill_screens.py10 COLUMNS = 4 variable
63 for y in range(COLUMNS):
Dprint_db.py10 COLUMNS = 4 variable
190 for k in range(0,COLUMNS):
/packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
DSlowSuggestionProvider.java32 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/
DCrashingSuggestionProvider.java32 private static final String[] COLUMNS = { field in CrashingSuggestionProvider
65 MatrixCursor cursor = new MatrixCursor(COLUMNS); in query()
DHangingSuggestionProvider.java32 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/
DPartialSuggestionProvider.java40 private static final String[] COLUMNS = { field in PartialSuggestionProvider
108 MutableMatrixCursor cursor = new MutableMatrixCursor(COLUMNS); in query()
/packages/apps/Contacts/src/com/android/contacts/activities/
DConfirmAddDetailActivity.java145 final String[] COLUMNS = new String[] { field
162 final String[] COLUMNS = new String[] { field
175 final String[] COLUMNS = new String[] { field
307 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS, in startContactQuery()
320 PhotoQuery.COLUMNS, null, null, null); in startPhotoQuery()
356 ExtraInfoQuery.COLUMNS, RawContacts.CONTACT_ID + " = ?", in startExtraInfoQuery()
/packages/experimental/LoaderApp/src/com/android/loaderapp/
DContactHeaderWidget.java95 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/Browser/src/com/android/browser/search/
DOpenSearchSearchEngine.java66 private static final String[] COLUMNS = new String[] { field in OpenSearchSearchEngine
230 return (mDescriptions != null ? COLUMNS : COLUMNS_WITHOUT_DESCRIPTION); in getColumnNames()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDataRowHandlerForGroupMembership.java47 String[] COLUMNS = new String[] { field
194 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
DDataRowHandler.java52 public static final String[] COLUMNS = new String[] { field
68 String[] COLUMNS = { Data._ID, Data.RAW_CONTACT_ID, Data.MIMETYPE }; field
DSearchIndexManager.java58 public static final String[] COLUMNS = { field in SearchIndexManager.ContactIndexQuery
348 Cursor cursor = db.query(Tables.DATA_JOIN_MIMETYPE_RAW_CONTACTS, ContactIndexQuery.COLUMNS, in buildAndInsertIndex()
/packages/apps/Contacts/src/com/android/contacts/editor/
DAggregationSuggestionEngine.java269 public static final String[] COLUMNS = { field in AggregationSuggestionEngine.DataQuery
326 DataQuery.COLUMNS, sb.toString(), null, Data.CONTACT_ID); in loadAggregationSuggestions()

12