Searched defs:getCount (Results 26 - 42 of 42) sorted by relevance

12

/frameworks/base/core/java/android/widget/
H A DCursorAdapter.java128 * @see android.widget.ListAdapter#getCount()
130 public int getCount() { method in class:CursorAdapter
132 return mCursor.getCount();
H A DSimpleAdapter.java90 * @see android.widget.Adapter#getCount()
92 public int getCount() { method in class:SimpleAdapter
H A DSpinner.java72 } else if (mAdapter != null && mAdapter.getCount() > 0) {
315 public int getCount() { method in class:Spinner.DropDownAdapter
316 return mAdapter == null ? 0 : mAdapter.getCount();
387 return getCount() == 0;
H A DCursorTreeAdapter.java179 return (mGroupCursorHelper.isValid() && helper != null) ? helper.getCount() : 0;
188 return mGroupCursorHelper.getCount();
426 int getCount() { method in class:CursorTreeAdapter.MyCursorHelper
428 return mCursor.getCount();
H A DExpandableListConnector.java390 public int getCount() { method in class:ExpandableListConnector
H A DAdapterView.java551 if (adapter != null && adapter.getCount() > 0 && selection >= 0) {
564 public int getCount() { method in class:AdapterView
664 final boolean empty = adapter == null || adapter.getCount() == 0;
677 final boolean empty = adapter == null || adapter.getCount() == 0;
689 final boolean empty = adapter == null || adapter.getCount() == 0;
778 mItemCount = getAdapter().getCount();
900 event.setItemCount(getCount());
1128 if (mFirstPosition >= 0 && mFirstPosition < adapter.getCount()) {
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java93 int count = mAdapter.getCount();
395 public int getCount() { method in class:ResolverActivity.ResolveListAdapter
/frameworks/base/core/tests/coretests/src/android/util/
H A DGridScenario.java344 public int getCount() { method in class:GridScenario.MyAdapter
H A DListScenario.java609 public int getCount() { method in class:ListScenario.MyAdapter
/frameworks/base/core/java/android/database/
H A DCursor.java38 int getCount(); method in interface:Cursor
H A DCursorWrapper.java69 public int getCount() { method in class:CursorWrapper
70 return mCursor.getCount();
H A DAbstractCursor.java47 abstract public int getCount(); method in class:AbstractCursor
171 final int count = getCount();
207 if (position < 0 || position > getCount()) {
252 return moveToPosition(getCount() - 1);
264 return mPos == 0 && getCount() != 0;
268 int cnt = getCount();
273 if (getCount() == 0) {
280 if (getCount() == 0) {
283 return mPos == getCount();
304 if (getCount() >
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DGlobalActions.java275 public int getCount() { method in class:GlobalActions.MyAdapter
321 + "= " + getCount() + ", keyguardshowing=" + mKeyguardShowing
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccProvider.java79 if (position < 0 || position > getCount()) {
126 public int getCount() { method in class:ArrayListCursor
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java60 public int getCount() { method in class:MockCursor
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java1143 public int getCount() { method in class:MenuBuilder.MenuAdapter
/frameworks/base/media/java/android/media/
H A DAudioService.java1050 public int getCount() { method in class:AudioService.ScoClient
1063 count += mScoClients.get(i).getCount();

Completed in 634 milliseconds

12