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

/frameworks/ex/common/java/com/android/common/widget/
H A DGroupingListAdapter.java67 private int mRowIdColumnIndex; field in class:GroupingListAdapter
169 mRowIdColumnIndex = cursor.getColumnIndexOrThrow("_id");
448 return mCursor.getLong(mRowIdColumnIndex);
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java52 protected int mRowIdColumnIndex; field in class:AbstractCursor
55 * If {@link #mRowIdColumnIndex} is not -1 this contains contains the value of
56 * the column at {@link #mRowIdColumnIndex} for the current row this cursor is
186 mRowIdColumnIndex = -1;
219 if (mRowIdColumnIndex != -1) {
220 mCurrentRowID = Long.valueOf(getLong(mRowIdColumnIndex));

Completed in 58 milliseconds