HomeSort by relevance Sort by last modified time
    Searched full:startingindex (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/database/
CursorJoiner.java 196 * array and saves them in values beginning at startingIndex, skipping a slot
197 * for each value. If columnIndicies has length 3 and startingIndex is 1, the
202 * @param startingIndex the slot in which to start storing values, and must be either 0 or 1.
205 int startingIndex) {
206 assert startingIndex == 0 || startingIndex == 1;
208 values[startingIndex + i*2] = cursor.getString(columnIndicies[i]);
  /frameworks/base/core/java/com/android/internal/util/
HierarchicalStateMachine.java 785 int startingIndex = mStateStackTopIndex + 1;
787 int j = startingIndex;
798 + mStateStackTopIndex + ",startingIndex=" + startingIndex
801 return startingIndex;
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 806 * @param startingIndex The zero-based position at which bookmarks in this file should begin
808 private int loadBookmarks(SQLiteDatabase db, int startingIndex) {
814 int i = startingIndex;
    [all...]

Completed in 275 milliseconds