Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
H A DArrayUtilsTest.java148 assertNull(ArrayUtils.removeLong(null, 1)); in testRemoveLong()
150 ArrayUtils.removeLong(new long[] { }, 1)); in testRemoveLong()
152 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 4)); in testRemoveLong()
154 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 1)); in testRemoveLong()
156 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 2)); in testRemoveLong()
158 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 3)); in testRemoveLong()
160 ArrayUtils.removeLong(new long[] { 1, 2, 3, 1 }, 1)); in testRemoveLong()
/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DArrayUtils.java593 public static @Nullable long[] removeLong(@Nullable long[] cur, long val) { in removeLong() method in ArrayUtils