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.java143 assertNull(ArrayUtils.removeLong(null, 1)); in testRemoveLong()
145 ArrayUtils.removeLong(new long[] { }, 1)); in testRemoveLong()
147 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 4)); in testRemoveLong()
149 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 1)); in testRemoveLong()
151 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 2)); in testRemoveLong()
153 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 3)); in testRemoveLong()
155 ArrayUtils.removeLong(new long[] { 1, 2, 3, 1 }, 1)); in testRemoveLong()
/frameworks/base/core/java/com/android/internal/util/
DArrayUtils.java390 public static @Nullable long[] removeLong(@Nullable long[] cur, long val) { in removeLong() method in ArrayUtils