Searched refs:NUMBER_LONG_INTEGER (Results 1 – 3 of 3) sorted by relevance
/cts/tests/tests/database/src/android/database/cts/ |
D | CursorWindowTest.java | 203 final long NUMBER_LONG_INTEGER = (long) 0xaabbccddffL; in testAccessDataValues() local 204 final long NUMBER_INTEGER = (int) NUMBER_LONG_INTEGER; in testAccessDataValues() 222 assertTrue(cursorWindow.putString(Long.toString(NUMBER_LONG_INTEGER), 0, 0)); in testAccessDataValues() 223 assertEquals(Long.toString(NUMBER_LONG_INTEGER), cursorWindow.getString(0, 0)); in testAccessDataValues() 224 assertEquals(NUMBER_LONG_INTEGER, cursorWindow.getLong(0, 0)); in testAccessDataValues() 261 assertTrue(cursorWindow.putLong(NUMBER_LONG_INTEGER, 0, 2)); in testAccessDataValues() 262 assertEquals(NUMBER_LONG_INTEGER, cursorWindow.getLong(0, 2)); in testAccessDataValues() 264 assertEquals(Long.toString(NUMBER_LONG_INTEGER), cursorWindow.getString(0, 2)); in testAccessDataValues() 279 assertEquals(NUMBER_LONG_INTEGER, cursorWindow.getLong(0, 3)); in testAccessDataValues()
|
D | CursorWrapperTest.java | 296 final long NUMBER_LONG_INTEGER = 0xaabbccddffL; in testGettingValues() local 297 final long NUMBER_INTEGER = (int) NUMBER_LONG_INTEGER; in testGettingValues() 301 assertTrue(NUMBER_LONG_INTEGER != NUMBER_INTEGER); in testGettingValues() 302 assertTrue(NUMBER_LONG_INTEGER != (short) NUMBER_SHORT); in testGettingValues() 314 args[2] = NUMBER_LONG_INTEGER; in testGettingValues() 347 assertEquals(NUMBER_LONG_INTEGER, cursorWrapper.getLong(columnInteger)); in testGettingValues()
|
D | MergeCursorTest.java | 133 final long NUMBER_LONG_INTEGER = (long) 0xaabbccddffL; in testGetValues() local 134 final long NUMBER_INTEGER = (int) NUMBER_LONG_INTEGER; in testGetValues() 143 buildDatabaseWithTestValues(TEST_STRING[i], NUMBER_DOUBLE - i, NUMBER_LONG_INTEGER - i, in testGetValues() 173 assertEquals(NUMBER_LONG_INTEGER - i, mergeCursor.getLong(columnInteger)); in testGetValues()
|