Home
last modified time | relevance | path

Searched refs:mCursorLeft (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/database/
DCursorJoiner.java47 private Cursor mCursorLeft; field in CursorJoiner
84 mCursorLeft = cursorLeft; in CursorJoiner()
87 mCursorLeft.moveToFirst(); in CursorJoiner()
124 return !mCursorLeft.isLast() || !mCursorRight.isLast(); in hasNext()
127 return !mCursorLeft.isLast() || !mCursorRight.isAfterLast(); in hasNext()
130 return !mCursorLeft.isAfterLast() || !mCursorRight.isLast(); in hasNext()
137 return !mCursorLeft.isAfterLast() || !mCursorRight.isAfterLast(); in hasNext()
163 boolean hasLeft = !mCursorLeft.isAfterLast(); in next()
167 populateValues(mValues, mCursorLeft, mColumnsLeft, 0 /* start filling at index 0 */); in next()
220 mCursorLeft.moveToNext(); in incrementCursors()
[all …]