Home
last modified time | relevance | path

Searched refs:NUM_OF_SLOTS (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
DClipStorage.java59 static final int NUM_OF_SLOTS = 20; field in ClipStorage
73 private final File[] mSlots = new File[NUM_OF_SLOTS];
106 for (int i = 0; i < NUM_OF_SLOTS; ++i, curSlot = (curSlot + 1) % NUM_OF_SLOTS) { in claimStorageSlot()
126 mNextSlot = (curSlot + 1) % NUM_OF_SLOTS; in claimStorageSlot()
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/clipping/
DClipStorageTest.java19 import static com.android.documentsui.clipping.ClipStorage.NUM_OF_SLOTS;
108 for (int i = 0; i < NUM_OF_SLOTS - 1; ++i) { in testClaimStorageSlot_NoAvailableSlot()