Home
last modified time | relevance | path

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

/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
DArrayUtilsTest.java177 assertNull(ArrayUtils.removeLong(null, 1)); in testRemoveLong()
179 ArrayUtils.removeLong(new long[] { }, 1)); in testRemoveLong()
181 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 4)); in testRemoveLong()
183 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 1)); in testRemoveLong()
185 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 2)); in testRemoveLong()
187 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 3)); in testRemoveLong()
189 ArrayUtils.removeLong(new long[] { 1, 2, 3, 1 }, 1)); in testRemoveLong()
/frameworks/base/core/java/com/android/internal/util/
DArrayUtils.java648 public static @Nullable long[] removeLong(@Nullable long[] cur, long val) { in removeLong() method in ArrayUtils