Home
last modified time | relevance | path

Searched refs:checkBounds (Results 1 – 7 of 7) sorted by relevance

/packages/providers/MediaProvider/src/com/android/providers/media/util/
DLongArray.java102 checkBounds(mSize, index); in add()
162 checkBounds(mSize, index); in get()
170 checkBounds(mSize, index); in set()
192 checkBounds(mSize, index); in remove()
225 public static void checkBounds(int len, int index) { in checkBounds() method in LongArray
/packages/apps/Launcher3/src/com/android/launcher3/util/
DIntArray.java83 checkBounds(mSize, index); in add()
163 checkBounds(mSize, index); in get()
171 checkBounds(mSize, index); in set()
201 checkBounds(mSize, index); in removeIndex()
271 private static void checkBounds(int len, int index) { in checkBounds() method in IntArray
/packages/services/Car/car-lib/src/com/android/car/internal/util/
DIntArray.java106 ArrayUtils.checkBounds(mSize, index); in add()
190 ArrayUtils.checkBounds(mSize, index); in get()
198 ArrayUtils.checkBounds(mSize, index); in set()
220 ArrayUtils.checkBounds(mSize, index); in remove()
DLongArray.java110 ArrayUtils.checkBounds(mSize, index); in add()
170 ArrayUtils.checkBounds(mSize, index); in get()
178 ArrayUtils.checkBounds(mSize, index); in set()
200 ArrayUtils.checkBounds(mSize, index); in remove()
DArrayUtils.java770 public static void checkBounds(int len, int index) { in checkBounds() method in ArrayUtils
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/internal/util/
DArrayUtilsTest.java491 ArrayUtils.checkBounds(1, 0); in testCheckBounds()
497 () -> ArrayUtils.checkBounds(1, -1)); in testCheckBoundsNegative()
503 () -> ArrayUtils.checkBounds(1, 1)); in testCheckBoundsTooLarge()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DGLView.java296 int x, int y, GLView component, boolean checkBounds) { in dispatchTouchEvent() argument
300 if (!checkBounds || rect.contains(x, y)) { in dispatchTouchEvent()