HomeSort by relevance Sort by last modified time
    Searched refs:getCount (Results 126 - 150 of 1389) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchVerticalSpacingStackFromBottomTest.java 56 assertEquals(mGridView.getAdapter().getCount() - 1, mGridView.getSelectedItemPosition());
73 assertEquals("Wrong view in last position", mGridView.getAdapter().getCount() - 1,
95 assertEquals("Wrong view in last position", mGridView.getAdapter().getCount() - 1,
157 assertEquals("Grid is not scrolled to the bottom", mGridView.getAdapter().getCount() - 1,
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchBottomGravityManyTest.java 56 assertEquals(mListView.getAdapter().getCount() - 1, mListView.getSelectedItemPosition());
91 assertEquals("List is not scrolled to the bottom", mListView.getAdapter().getCount() - 1,
111 assertEquals("Wrong view in last position", mListView.getAdapter().getCount() - 1,
133 assertEquals("Wrong view in last position", mListView.getAdapter().getCount() - 1,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
HbpcdUtils.java 56 int c2Counter = c2.getCount();
86 int c3Counter = c3.getCount();
115 if (c5.getCount() > 0) {
145 if (cur.getCount() > 0) {
  /packages/apps/Contacts/src/com/android/contacts/widget/
CompositeListAdapter.java 93 int count = adapter.getCount();
108 if (getCount() > 0) {
128 int count = mAdapters[i].getCount();
139 public int getCount() {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
EmptyCursor.java 37 public int getCount() {
  /packages/apps/Gallery/src/com/android/camera/gallery/
SingleImageList.java 45 public int getCount() {
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
MtpAdapter.java 88 public int getCount() {
165 if (getCount() == 0) {
177 int count = getCount();
189 return getCount() > 0 ? mModel.getBuckets(mSortOrder) : null;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Multipart.java 44 public int getCount() throws MessagingException {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationPositionTracker.java 68 private int getCount() {
71 return cursor.getCount();
111 while (pos < getCount()) {
178 final int listSize = cursor.getCount();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
CountingOutputStream.java 98 public synchronized int getCount() {
127 * NOTE: This method is an alternative for <code>getCount()</code>.
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VCardTest.java 45 int total = composer.getCount();
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DeletedContactUtil.java 52 public static long getCount(ContentResolver resolver) {
58 return cursor.getCount();
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRPtrBuffer.h 48 @property (getter=getCount, setter=setCount:) NSUInteger count;
71 - (NSUInteger)getCount;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithEmptyView.java 43 if (position < 0 || position >= this.getCount()) {
91 if (mAdapter.getCount() > 0) {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootCursorWrapper.java 46 final int count = cursor.getCount();
88 public int getCount() {
  /packages/apps/Camera2/src/com/android/camera/data/
AbstractLocalDataAdapterWrapper.java 135 public int getCount() {
136 return mAdapter.getCount();
  /packages/apps/Contacts/src/com/android/contacts/list/
HeaderEntryContactListAdapter.java 55 public int getCount() {
56 return super.getCount() + getHeaderEntryCount();
  /packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java 159 int activeCount = ContentCache.sActiveCursors.getCount(activeCursor);
170 assertEquals(1, cursor.getCount());
271 assertEquals(2, ContentCache.sActiveCursors.getCount(underlyingCursor));
278 assertEquals(0, ContentCache.sActiveCursors.getCount(underlyingCursor));
286 assertEquals(2, ContentCache.sActiveCursors.getCount(underlyingCursor));
289 assertEquals(0, ContentCache.sActiveCursors.getCount(underlyingCursor));
294 assertEquals(1, ContentCache.sActiveCursors.getCount(underlyingCursor));
299 assertEquals(0, ContentCache.sActiveCursors.getCount(underlyingCursor));
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Suggestions.java 96 result.getSource().getName() + " results:" + result.getCount());
184 return mResult == null ? 0 : mResult.getCount();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
AbstractGoogleSourceResult.java 39 public abstract int getCount();
63 int size = getCount();
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 88 assertEquals(TEST_ITEM_COUNT, cursor1.getCount());
89 assertEquals(TEST_ITEM_COUNT, cursor2.getCount());
116 assertEquals(UNIQUE_COUNT * 2, cursor1.getCount());
117 assertEquals(UNIQUE_COUNT * 2, cursor2.getCount());
140 assertEquals(TEST_ITEM_COUNT, cursor1.getCount());
142 assertEquals(TEST_ITEM_COUNT, cursor2.getCount());
  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 154 assertEquals(1, cursor.getCount());
165 assertEquals(1, cursor.getCount());
177 assertEquals(2, cursor.getCount());
191 assertEquals(0, cursor.getCount());
205 assertEquals(0, cursor.getCount());
219 assertEquals(2, cursor.getCount());
237 assertEquals(0, cursor.getCount());
254 assertEquals(3, cursor.getCount());
276 assertEquals(0, cursor.getCount());
283 assertEquals(1, cursor.getCount());
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/appmenu/
AppMenuTest.java 92 assertEquals(getCount() - 1, getCurrentFocusedRow());
96 assertEquals(getCount() - 1, getCurrentFocusedRow());
127 assertEquals(getCount() - 1, getCurrentFocusedRow());
207 final int end = towardsTop ? 0 : getCount() - 1;
256 private int getCount() {
259 return popup.getListView().getCount();
  /external/chromium_org/third_party/skia/tests/
BBoxHierarchyTest.cpp 121 REPORTER_ASSERT(reporter, NUM_RECTS == tree->getCount());
126 REPORTER_ASSERT(reporter, 0 == tree->getCount());
135 REPORTER_ASSERT(reporter, NUM_RECTS == tree->getCount());
140 REPORTER_ASSERT(reporter, 0 == tree->getCount());
149 REPORTER_ASSERT(reporter, NUM_RECTS == tree->getCount());
154 REPORTER_ASSERT(reporter, 0 == tree->getCount());
  /external/skia/tests/
BBoxHierarchyTest.cpp 121 REPORTER_ASSERT(reporter, NUM_RECTS == tree->getCount());
126 REPORTER_ASSERT(reporter, 0 == tree->getCount());
135 REPORTER_ASSERT(reporter, NUM_RECTS == tree->getCount());
140 REPORTER_ASSERT(reporter, 0 == tree->getCount());
149 REPORTER_ASSERT(reporter, NUM_RECTS == tree->getCount());
154 REPORTER_ASSERT(reporter, 0 == tree->getCount());

Completed in 1494 milliseconds

1 2 3 4 56 7 8 91011>>