HomeSort by relevance Sort by last modified time
    Searched refs:currentRowNumber (Results 1 - 4 of 4) sorted by null

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAbstractCursor.java 22 protected int currentRowNumber = -1;
52 return currentRowNumber;
67 * Set currentRowNumber(Int) and currentRow (Map)
72 currentRowNumber = pos;
73 if ((-1 == currentRowNumber) || (rowCount == currentRowNumber)) {
76 currentRow = rows.get(currentRowNumber);
82 if (currentRowNumber + 1 >= realAbstractCursor.getCount()) {
83 currentRowNumber = realAbstractCursor.getCount();
86 setPosition(++currentRowNumber);
    [all...]
ShadowMatrixCursor.java 80 if (currentRowNumber < 0) {
83 if (currentRowNumber >= rowCount) {
86 return data.get(currentRowNumber)[column];
ShadowSQLiteCursor.java 163 if (-1 == currentRowNumber || getCount() == currentRowNumber) {
164 throw new IndexOutOfBoundsException(currentRowNumber + " " + getCount());
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 46 milliseconds