Searched refs:getCount (Results 1 - 25 of 182) sorted by path

12345678

/frameworks/av/drm/common/
H A DDrmConstraints.cpp28 int DrmConstraints::getCount(void) const { function in class:DrmConstraints
H A DDrmInfo.cpp40 int DrmInfo::getCount(void) const { function in class:DrmInfo
H A DDrmInfoRequest.cpp37 int DrmInfoRequest::getCount(void) const { function in class:DrmInfoRequest
H A DDrmMetadata.cpp21 int DrmMetadata::getCount(void) const { function in class:DrmMetadata
H A DIDrmManagerService.cpp261 data.writeInt32(drmInfo->getCount());
306 data.writeInt32(drmInforequest->getCount());
882 reply->writeInt32(drmConstraints->getCount());
912 reply->writeInt32(drmMetadata->getCount());
1035 reply->writeInt32(drmInfo->getCount());
/frameworks/av/include/drm/
H A DDrmConstraints.h134 int getCount(void) const;
H A DDrmInfo.h126 int getCount(void) const;
H A DDrmInfoRequest.h133 int getCount(void) const;
H A DDrmMetadata.h93 int getCount(void) const;
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java138 public int getCount() { method in class:LauncherActivity.ActivityAdapter
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java82 // Calling getCount() causes the cursor window to be filled,
85 cursor.getCount();
H A DContentProvider.java850 int count = (c != null) ? c.getCount() : 0;
H A DContentProviderOperation.java239 numRows = cursor.getCount();
H A DContentResolver.java390 qCursor.getCount();
H A DCursorLoader.java69 cursor.getCount();
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java79 abstract public int getCount(); method in class:AbstractCursor
197 final int count = getCount();
241 return moveToPosition(getCount() - 1);
253 return mPos == 0 && getCount() != 0;
257 int cnt = getCount();
262 if (getCount() == 0) {
269 if (getCount() == 0) {
272 return mPos == getCount();
293 if (getCount() > 0) {
423 if (-1 == mPos || getCount()
[all...]
H A DBulkCursorToCursorAdaptor.java69 public int getCount() { method in class:BulkCursorToCursorAdaptor
H A DCursor.java57 int getCount(); method in interface:Cursor
H A DCursorToBulkCursorAdaptor.java143 d.count = mCursor.getCount();
236 return mCursor.getCount();
H A DCursorWrapper.java56 public int getCount() { method in class:CursorWrapper
57 return mCursor.getCount();
H A DDatabaseUtils.java266 if (position < 0 || position >= cursor.getCount()) {
1019 mColumns = new HashMap<String, Integer>(cur.getCount());
1037 sb.append(i == cur.getCount() ? ") " : ", ");
1038 sbv.append(i == cur.getCount() ? ");" : ", ");
H A DMatrixCursor.java218 public int getCount() { method in class:MatrixCursor
H A DMergeCursor.java55 public int getCount() method in class:MergeCursor
61 count += mCursors[i].getCount();
79 if (newPosition < (cursorStartPos + mCursors[i].getCount())) {
84 cursorStartPos += mCursors[i].getCount();
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCursor.java131 public int getCount() { method in class:SQLiteCursor
/frameworks/base/core/java/android/preference/
H A DPreferenceGroupAdapter.java196 public int getCount() { method in class:PreferenceGroupAdapter
201 if (position < 0 || position >= getCount()) return null;
206 if (position < 0 || position >= getCount()) return ListView.INVALID_ROW_ID;
226 if (position < 0 || position >= getCount()) return true;

Completed in 149 milliseconds

12345678