Home
last modified time | relevance | path

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

/cts/tests/tests/database/src/android/database/cts/
DCursorWindowTest.java121 CursorWindow cursorWindow; in testConstructors() local
124 cursorWindow = new CursorWindow(true); in testConstructors()
125 assertEquals(0, cursorWindow.getStartPosition()); in testConstructors()
128 cursorWindow = new CursorWindow(false); in testConstructors()
129 assertEquals(0, cursorWindow.getStartPosition()); in testConstructors()
133 cursorWindow = new CursorWindow(true); in testConstructors()
134 cursorWindow.setStartPosition(TEST_NUMBER); in testConstructors()
135 cursorWindow.setNumColumns(1); in testConstructors()
136 cursorWindow.allocRow(); in testConstructors()
137 cursorWindow.putString(TEST_STRING, TEST_NUMBER, 0); in testConstructors()
[all …]
/cts/tests/tests/database/src/android/database/sqlite/cts/
DSQLiteCursorTest.java96 MockCursorWindow cursorWindow = new MockCursorWindow(false); in testRegisterDataSetObserver() local
100 cursor.setWindow(cursorWindow); in testRegisterDataSetObserver()
104 assertFalse(cursorWindow.isClosed()); in testRegisterDataSetObserver()
108 assertTrue(cursorWindow.isClosed()); in testRegisterDataSetObserver()