OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:columnInteger
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/database/src/android/database/cts/
MergeCursorTest.java
240
int
columnInteger
= mCursors[0].getColumnIndexOrThrow("int_number");
254
assertEquals(NUMBER_LONG_INTEGER - i, mergeCursor.getLong(
columnInteger
));
255
assertEquals(NUMBER_INTEGER - i, mergeCursor.getInt(
columnInteger
));
256
assertEquals(NUMBER_SHORT - i, mergeCursor.getShort(
columnInteger
));
CursorWrapperTest.java
552
int
columnInteger
= cursorWrapper.getColumnIndexOrThrow("int_number");
564
assertEquals(NUMBER_LONG_INTEGER, cursorWrapper.getLong(
columnInteger
));
566
assertEquals(NUMBER_INTEGER, cursorWrapper.getInt(
columnInteger
));
568
assertEquals(NUMBER_SHORT, cursorWrapper.getShort(
columnInteger
));
Completed in 56 milliseconds