Home
last modified time | relevance | path

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

/cts/tests/tests/database/src/android/database/cts/
DCursorWrapperTest.java297 final long NUMBER_INTEGER = (int) NUMBER_LONG_INTEGER; in testGettingValues() local
298 final long NUMBER_SHORT = (short) NUMBER_INTEGER; in testGettingValues()
301 assertTrue(NUMBER_LONG_INTEGER != NUMBER_INTEGER); in testGettingValues()
303 assertTrue(NUMBER_INTEGER != (int) NUMBER_SHORT); in testGettingValues()
349 assertEquals(NUMBER_INTEGER, cursorWrapper.getInt(columnInteger)); in testGettingValues()
DCursorWindowTest.java204 final long NUMBER_INTEGER = (int) NUMBER_LONG_INTEGER; in testAccessDataValues() local
205 final long NUMBER_SHORT = (short) NUMBER_INTEGER; in testAccessDataValues()
225 assertEquals(NUMBER_INTEGER, cursorWindow.getInt(0, 0)); in testAccessDataValues()
263 assertEquals(NUMBER_INTEGER, cursorWindow.getInt(0, 2)); in testAccessDataValues()
280 assertEquals(NUMBER_INTEGER, cursorWindow.getInt(0, 3)); in testAccessDataValues()
DMergeCursorTest.java134 final long NUMBER_INTEGER = (int) NUMBER_LONG_INTEGER; in testGetValues() local
135 final long NUMBER_SHORT = (short) NUMBER_INTEGER; in testGetValues()
174 assertEquals(NUMBER_INTEGER - i, mergeCursor.getInt(columnInteger)); in testGetValues()