HomeSort by relevance Sort by last modified time
    Searched defs:groupCursor (Results 1 - 2 of 2) sorted by null

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
ClusteredSuggestionsAdapter.java 163 SuggestionCursor groupCursor = getGroup(getGroupPosition(childId));
164 if (groupCursor != null) {
165 return new SuggestionPosition(groupCursor, getChildPosition(childId));
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 401 protected Cursor getChildrenCursor(Cursor groupCursor) {
402 int accountColumn = groupCursor.getColumnIndexOrThrow(Calendars.ACCOUNT_NAME);
403 int accountTypeColumn = groupCursor.getColumnIndexOrThrow(Calendars.ACCOUNT_TYPE);
404 String account = groupCursor.getString(accountColumn);
405 String accountType = groupCursor.getString(accountTypeColumn);
408 new RefreshCalendars(groupCursor.getPosition(), account, accountType).run();

Completed in 142 milliseconds