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

12

/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DGroupsListLoader.java27 public static final String[] COLUMNS = new String[] { field in class:GroupsListLoader
36 super(context, Groups.CONTENT_URI, COLUMNS, null, null, Groups.TITLE);
H A DContactsListLoader.java28 public static final String[] COLUMNS = new String[] { field in class:ContactsListLoader
47 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS,
52 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null, null);
57 return new CursorLoader(context, uri, COLUMNS, null, null, Contacts.SORT_KEY_PRIMARY);
/packages/apps/Contacts/src/com/android/contacts/
H A DGroupListLoader.java31 private final static String[] COLUMNS = new String[] { field in class:GroupListLoader
50 super(context, GROUP_LIST_URI, COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "
H A DGroupMetaDataLoader.java29 private final static String[] COLUMNS = new String[] { field in class:GroupMetaDataLoader
52 super(context, ensureIsGroupUri(groupUri), COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "
H A DContactTileLoaderFactory.java45 private static final String[] COLUMNS = new String[] { field in class:ContactTileLoaderFactory
73 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null, null);
84 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS,
89 return new CursorLoader(context, Contacts.CONTENT_FREQUENT_URI, COLUMNS,
H A DContactLoader.java540 final static String[] COLUMNS = new String[] { field in class:ContactLoader.ContactQuery
689 final static String[] COLUMNS = new String[] { field in class:ContactLoader.DirectoryQuery
707 final static String[] COLUMNS = new String[] { field in class:ContactLoader.GroupQuery
778 Cursor cursor = resolver.query(entityUri, ContactQuery.COLUMNS, null, null,
1024 values.put(ContactQuery.COLUMNS[index], cursor.getLong(index));
1027 values.put(ContactQuery.COLUMNS[index], cursor.getString(index));
1030 values.put(ContactQuery.COLUMNS[index], cursor.getBlob(index));
1042 DirectoryQuery.COLUMNS, null, null, null);
1106 GroupQuery.COLUMNS, selection.toString(), selectionArgs.toArray(new String[0]),
H A DSplitAggregateView.java59 String[] COLUMNS = new String[] { field in interface:SplitAggregateView.SplitQuery
162 SplitQuery.COLUMNS, null, null, null);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionCursorBackedCursor.java29 public static final String[] COLUMNS = { field in class:SuggestionCursorBackedCursor
77 ArrayList<String> allColumns = new ArrayList<String>(COLUMNS.length +
80 allColumns.addAll(Arrays.asList(COLUMNS));
84 return COLUMNS;
99 int extraColumn = columnIdx - COLUMNS.length;
123 if (column < COLUMNS.length) {
153 + " of " + COLUMNS.length);
H A DCursorBackedSuggestionExtras.java34 DEFAULT_COLUMNS.addAll(Arrays.asList(SuggestionCursorBackedCursor.COLUMNS));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DCommonNicknameCache.java50 public final static String[] COLUMNS = new String[] { field in class:CommonNicknameCache.NicknameLookupPreloadQuery
72 NicknameLookupPreloadQuery.COLUMNS,
125 String[] COLUMNS = new String[] { field in interface:CommonNicknameCache.NicknameLookupQuery
134 Cursor cursor = mDb.query(NicknameLookupQuery.TABLE, NicknameLookupQuery.COLUMNS,
/packages/apps/Launcher2/
H A Dfill_screens.py10 COLUMNS = 4 variable
63 for y in range(COLUMNS):
H A Dprint_db.py10 COLUMNS = 4 variable
190 for k in range(0,COLUMNS):
/packages/apps/QuickSearchBox/tests/slow/src/com/android/quicksearchbox/tests/slow/
H A DSlowSuggestionProvider.java32 private static final String[] COLUMNS = { field in class:SlowSuggestionProvider
56 MatrixCursor cursor = new MatrixCursor(COLUMNS);
/packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
H A DSpammySuggestionProvider.java32 private static final String[] COLUMNS = { field in class:SpammySuggestionProvider
50 MatrixCursor cursor = new MatrixCursor(COLUMNS);
/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
H A DCrashingSuggestionProvider.java32 private static final String[] COLUMNS = { field in class:CrashingSuggestionProvider
65 MatrixCursor cursor = new MatrixCursor(COLUMNS);
H A DHangingSuggestionProvider.java32 private static final String[] COLUMNS = { field in class:HangingSuggestionProvider
57 MatrixCursor cursor = new MatrixCursor(COLUMNS);
/packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/
H A DPartialSuggestionProvider.java40 private static final String[] COLUMNS = { field in class:PartialSuggestionProvider
108 MutableMatrixCursor cursor = new MutableMatrixCursor(COLUMNS);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java538 public static final String[] COLUMNS = { RawContacts._ID, RawContacts.AGGREGATION_MODE }; field in class:ContactAggregator.RawContactIdAndAggregationModeQuery
552 RawContactIdAndAggregationModeQuery.COLUMNS,
631 public static final String[] COLUMNS = { field in class:ContactAggregator.RawContactIdAndAccountQuery
655 RawContactIdAndAccountQuery.COLUMNS, RawContactIdAndAccountQuery.SELECTION,
1007 public static final String[] COLUMNS = { RawContacts._ID }; field in class:ContactAggregator.RawContactIdQuery
1037 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS,
1102 String[] COLUMNS = { field in interface:ContactAggregator.AggregateExceptionPrefetchQuery
1128 AggregateExceptionPrefetchQuery.COLUMNS,
1152 String[] COLUMNS = { field in interface:ContactAggregator.AggregateExceptionQuery
1186 AggregateExceptionQuery.COLUMNS,
1297 String[] COLUMNS = new String[] { field in interface:ContactAggregator.NameLookupQuery
1362 final String[] COLUMNS = new String[] { field in interface:ContactAggregator.IdentityLookupMatchQuery
1403 String[] COLUMNS = new String[] { field in interface:ContactAggregator.NameLookupMatchQuery
1449 String[] COLUMNS = new String[] { field in interface:ContactAggregator.NameLookupMatchQueryWithParameter
1554 String[] COLUMNS = new String[] { field in interface:ContactAggregator.EmailLookupQuery
1597 String[] COLUMNS = new String[] { field in interface:ContactAggregator.PhoneLookupQuery
1652 String[] COLUMNS = new String[] { field in interface:ContactAggregator.ContactNameLookupQuery
2008 final String[] COLUMNS = new String[] { field in interface:ContactAggregator.PhotoIdQuery
2090 final String[] COLUMNS = new String[] { field in interface:ContactAggregator.PhotoFileQuery
2150 String[] COLUMNS = new String[] { field in interface:ContactAggregator.DisplayNameQuery
2248 String[] COLUMNS = new String[] { field in interface:ContactAggregator.LookupKeyQuery
2336 String[] COLUMNS = new String[] { field in interface:ContactAggregator.ContactIdQuery
[all...]
/packages/apps/Browser/src/com/android/browser/search/
H A DOpenSearchSearchEngine.java66 private static final String[] COLUMNS = new String[] { field in class:OpenSearchSearchEngine
230 return (mDescriptions != null ? COLUMNS : COLUMNS_WITHOUT_DESCRIPTION);
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DContactHeaderWidget.java95 String[] COLUMNS = new String[] { field in interface:ContactHeaderWidget.ContactQuery
124 String[] COLUMNS = new String[] { field in interface:ContactHeaderWidget.PhotoQuery
591 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS,
610 ContentUris.withAppendedId(Data.CONTENT_URI, photoId), PhotoQuery.COLUMNS,
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForGroupMembership.java47 String[] COLUMNS = new String[] { field in interface:DataRowHandlerForGroupMembership.RawContactsQuery
194 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
H A DDataRowHandler.java52 public static final String[] COLUMNS = new String[] { field in interface:DataRowHandler.DataDeleteQuery
68 String[] COLUMNS = { Data._ID, Data.RAW_CONTACT_ID, Data.MIMETYPE }; field in interface:DataRowHandler.DataUpdateQuery
H A DSearchIndexManager.java58 public static final String[] COLUMNS = { field in class:SearchIndexManager.ContactIndexQuery
348 Cursor cursor = db.query(Tables.DATA_JOIN_MIMETYPE_RAW_CONTACTS, ContactIndexQuery.COLUMNS,
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DConfirmAddDetailActivity.java145 final String[] COLUMNS = new String[] { field in interface:ConfirmAddDetailActivity.ContactQuery
162 final String[] COLUMNS = new String[] { field in interface:ConfirmAddDetailActivity.PhotoQuery
175 final String[] COLUMNS = new String[] { field in interface:ConfirmAddDetailActivity.ExtraInfoQuery
307 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS,
320 PhotoQuery.COLUMNS, null, null, null);
356 ExtraInfoQuery.COLUMNS, RawContacts.CONTACT_ID + " = ?",
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java269 public static final String[] COLUMNS = { field in class:AggregationSuggestionEngine.DataQuery
326 DataQuery.COLUMNS, sb.toString(), null, Data.CONTACT_ID);

Completed in 351 milliseconds

12