Searched defs:getCount (Results 51 - 75 of 149) sorted by relevance

123456

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DListSuggestionCursor.java100 public int getCount() { method in class:ListSuggestionCursor
H A DSuggestionCursorBackedCursor.java89 public int getCount() { method in class:SuggestionCursorBackedCursor
90 return mCursor.getCount();
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
H A DGoogleSuggestClient.java179 public int getCount() { method in class:GoogleSuggestClient.GoogleSuggestCursor
/packages/apps/Settings/src/com/android/settings/
H A DSmsDefaultDialog.java171 public int getCount() { method in class:SmsDefaultDialog.AppListAdapter
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppOpsSummary.java71 public int getCount() { method in class:AppOpsSummary.MyPagerAdapter
/packages/apps/TV/src/com/android/tv/ui/sidepanel/
H A DSideFragmentManager.java77 public int getCount() { method in class:SideFragmentManager
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DMergedAdapter.java89 public int getCount() { method in class:MergedAdapter
92 count += adapter.getCount();
113 int newCount = count + a.getCount();
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DContactEntryAdapter.java125 * @see android.widget.ListAdapter#getCount()
127 public final int getCount() { method in class:ContactEntryAdapter
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
H A DEmojiPalettesAdapter.java86 public int getCount() { method in class:EmojiPalettesAdapter
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DSectionedAlbumDataAdapter.java70 if (DEBUG) Log.i(TAG, "numAlbums = " + mAlbumData.getCount());
71 for (int i = 0; i < mAlbumData.getCount(); i++) {
85 for (int i = 0; i < mAlbumData.getCount(); i++) {
124 public int getCount() { method in class:SectionedAlbumDataAdapter
125 return mAlbumData.getCount() + sections.length;
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
H A DLiveWallpaperListAdapter.java83 public int getCount() { method in class:LiveWallpaperListAdapter
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapCallLogComposer.java109 if (mCursor.getCount() == 0 || !mCursor.moveToFirst()) {
263 public int getCount() { method in class:BluetoothPbapCallLogComposer
267 return mCursor.getCount();
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarViewAdapter.java139 public int getCount() { method in class:CalendarViewAdapter
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEventLocationAdapter.java157 public int getCount() { method in class:EventLocationAdapter
/packages/apps/Calendar/src/com/android/calendar/month/
H A DSimpleWeeksAdapter.java190 public int getCount() { method in class:SimpleWeeksAdapter
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectCalendarsSyncAdapter.java119 mRowCount = c.getCount();
229 public int getCount() { method in class:SelectCalendarsSyncAdapter
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DDbTestUtils.java93 public int getCount() { method in class:DbTestUtils.FakeCursor
/packages/apps/Camera2/src/com/android/camera/ui/
H A DDetailsDialog.java219 public int getCount() { method in class:DetailsDialog.DetailsAdapter
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupBrowseListAdapter.java61 if (mSelectedGroupUri == null && cursor != null && cursor.getCount() > 0) {
71 if (mSelectedGroupUri == null || mCursor == null || mCursor.getCount() == 0) {
105 public int getCount() { method in class:GroupBrowseListAdapter
106 return (mCursor == null || mCursor.isClosed()) ? 0 : mCursor.getCount();
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DAccountFilterActivity.java237 public int getCount() { method in class:AccountFilterActivity.FilterListAdapter
/packages/apps/DeskClock/src/com/android/deskclock/
H A DClockFragment.java112 hairline.setVisibility(mCityAdapter.getCount() == 0 ? GONE : VISIBLE);
159 mCityList.setVisibility(mCityAdapter.getCount() == 0 ? GONE : VISIBLE);
342 public int getCount() { method in class:ClockFragment.SelectedCitiesAdapter
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogActivity.java106 public int getCount() { method in class:CallLogActivity.ViewPagerAdapter
231 return mViewPagerAdapter.getCount() - 1 - position;
/packages/apps/Dialer/src/com/android/dialer/list/
H A DDialerPhoneNumberListAdapter.java57 public int getCount() { method in class:DialerPhoneNumberListAdapter
58 return super.getCount() + getShortcutCount();
129 int shortcutCount = position - super.getCount();
/packages/apps/Email/tests/src/com/android/email/
H A DDBTestHelper.java141 public int getCount() { method in class:DBTestHelper.EasyMockCursor
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DBaseImageList.java95 public int getCount() { method in class:BaseImageList
99 return cursor.getCount();
104 return getCount() == 0;

Completed in 1420 milliseconds

123456