Searched refs:removeLong (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/ |
D | ArrayUtilsTest.java | 144 assertNull(ArrayUtils.removeLong(null, 1)); in testRemoveLong() 146 ArrayUtils.removeLong(new long[] { }, 1)); in testRemoveLong() 148 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 4)); in testRemoveLong() 150 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 1)); in testRemoveLong() 152 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 2)); in testRemoveLong() 154 ArrayUtils.removeLong(new long[] { 1, 2, 3}, 3)); in testRemoveLong() 156 ArrayUtils.removeLong(new long[] { 1, 2, 3, 1 }, 1)); in testRemoveLong()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | ArrayUtils.java | 560 public static @Nullable long[] removeLong(@Nullable long[] cur, long val) { in removeLong() method in ArrayUtils
|