Searched defs:COLUMNS (Results 1 - 25 of 31) 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 DSplitAggregateView.java56 String[] COLUMNS = new String[] { field in interface:SplitAggregateView.SplitQuery
159 SplitQuery.COLUMNS, null, null, null);
/packages/apps/QuickSearchBox/tests/naughty/src/com/android/quicksearchbox/tests/naughty/
H A DHangingSuggestionProvider.java32 private static final String[] COLUMNS = { field in class:HangingSuggestionProvider
57 MatrixCursor cursor = new MatrixCursor(COLUMNS);
H A DCrashingSuggestionProvider.java32 private static final String[] COLUMNS = { field in class:CrashingSuggestionProvider
65 MatrixCursor cursor = new MatrixCursor(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/Launcher3/
H A Dfill_screens.py10 COLUMNS = 4 variable
63 for y in range(COLUMNS):
H A Dprint_db.py13 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/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/ContactsCommon/src/com/android/contacts/common/
H A DContactTileLoaderFactory.java53 private static final String[] COLUMNS = new String[] { field in class:ContactTileLoaderFactory
88 return new CursorLoader(context, Contacts.CONTENT_STREQUENT_URI, COLUMNS, null, null,
100 return new CursorLoader(context, Contacts.CONTENT_URI, COLUMNS, Contacts.STARRED + "=?",
105 return new CursorLoader(context, Contacts.CONTENT_FREQUENT_URI, 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/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);
/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/
H A DDataRowHandlerForGroupMembership.java46 String[] COLUMNS = new String[] { field in interface:DataRowHandlerForGroupMembership.RawContactsQuery
193 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
H A DDataRowHandler.java55 public static final String[] COLUMNS = new String[] { field in interface:DataRowHandler.DataDeleteQuery
71 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
360 Cursor cursor = db.query(Tables.DATA_JOIN_MIMETYPE_RAW_CONTACTS, ContactIndexQuery.COLUMNS,
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java483 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS,
529 String[] COLUMNS = { field in interface:ContactAggregator.AggregateExceptionQuery
563 AggregateExceptionQuery.COLUMNS,
703 final String[] COLUMNS = new String[] { field in interface:ContactAggregator.IdentityLookupMatchQuery
717 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS,
744 String[] COLUMNS = new String[] { field in interface:ContactAggregator.NameLookupMatchQuery
763 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS,
788 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS,
805 Cursor c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS,
849 String[] COLUMNS field in interface:ContactAggregator.ContactNameLookupQuery
[all...]
H A DContactAggregator2.java468 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS,
514 AggregateExceptionQuery.COLUMNS,
559 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS,
583 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS,
613 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS,
645 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null,
670 Cursor c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS,
719 String[] COLUMNS = new String[] { field in interface:ContactAggregator2.ContactNameLookupQuery
740 final Cursor c = db.query(ContactNameLookupQuery.TABLE, ContactNameLookupQuery.COLUMNS,
766 final String[] COLUMNS field in interface:ContactAggregator2.PhotoFileQuery
950 final String[] COLUMNS = new String[] { field in interface:ContactAggregator2.IdentityLookupMatchQuery
972 String[] COLUMNS = new String[] { field in interface:ContactAggregator2.NameLookupMatchQuery
1003 String[] COLUMNS = new String[] { field in interface:ContactAggregator2.EmailLookupQuery
1032 String[] COLUMNS = new String[] { field in interface:ContactAggregator2.PhoneLookupQuery
1048 final String[] COLUMNS = new String[] { field in interface:ContactAggregator2.NullNameRawContactsIdsQuery
[all...]
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DConfirmAddDetailActivity.java149 final String[] COLUMNS = new String[] { field in interface:ConfirmAddDetailActivity.ContactQuery
166 final String[] COLUMNS = new String[] { field in interface:ConfirmAddDetailActivity.PhotoQuery
179 final String[] COLUMNS = new String[] { field in interface:ConfirmAddDetailActivity.ExtraInfoQuery
314 mQueryHandler.startQuery(TOKEN_CONTACT_INFO, contactUri, contactUri, ContactQuery.COLUMNS,
327 PhotoQuery.COLUMNS, null, null, null);
363 ExtraInfoQuery.COLUMNS, RawContacts.CONTACT_ID + " = ?",
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DAggregationSuggestionEngine.java292 public static final String[] COLUMNS = { field in class:AggregationSuggestionEngine.DataQuery
352 DataQuery.COLUMNS, sb.toString(), null, Data.CONTACT_ID);
/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,

Completed in 3153 milliseconds

12