Searched defs:cursorIndex (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DDateSortedExpandableListAdapter.java107 * Get the byte array at cursorIndex from the Cursor. Assumes the Cursor
111 * @param cursorIndex Index to query the Cursor.
114 /* package */ byte[] getBlob(int cursorIndex) { argument
116 return mCursor.getBlob(cursorIndex);
124 * Get the integer at cursorIndex from the Cursor. Assumes the Cursor has
128 * @param cursorIndex Index to query the Cursor.
131 /* package */ int getInt(int cursorIndex) { argument
133 return mCursor.getInt(cursorIndex);
137 * Get the long at cursorIndex from the Cursor. Assumes the Cursor has
140 /* package */ long getLong(int cursorIndex) { argument
153 getString(int cursorIndex) argument
[all...]
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
H A DDateSortedExpandableListAdapter.java128 * Get the byte array at cursorIndex from the Cursor. Assumes the Cursor
132 * @param cursorIndex Index to query the Cursor.
135 /* package */ byte[] getBlob(int cursorIndex) { argument
136 return mCursor.getBlob(cursorIndex);
144 * Get the integer at cursorIndex from the Cursor. Assumes the Cursor has
148 * @param cursorIndex Index to query the Cursor.
151 /* package */ int getInt(int cursorIndex) { argument
152 return mCursor.getInt(cursorIndex);
156 * Get the long at cursorIndex from the Cursor. Assumes the Cursor has
159 /* package */ long getLong(int cursorIndex) { argument
171 getString(int cursorIndex) argument
[all...]

Completed in 40 milliseconds