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

/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
H A DClipStorage.java44 * - ... to {@link #NUM_OF_SLOTS}
59 static final int NUM_OF_SLOTS = 20; field in class:ClipStorage
73 private final File[] mSlots = new File[NUM_OF_SLOTS];
95 * <li>Making {@link #NUM_OF_SLOTS} - 1 times of large drag and drop or moveTo/copyTo/delete
97 * <li>Having more than {@link #NUM_OF_SLOTS} queued jumbo file operations, one or more clip
106 for (int i = 0; i < NUM_OF_SLOTS; ++i, curSlot = (curSlot + 1) % NUM_OF_SLOTS) {
126 mNextSlot = (curSlot + 1) % NUM_OF_SLOTS;
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/clipping/
H A DClipStorageTest.java19 import static com.android.documentsui.clipping.ClipStorage.NUM_OF_SLOTS;
103 for (int i = 0; i < NUM_OF_SLOTS - 1; ++i) {

Completed in 165 milliseconds