Searched refs:newList (Results 1 – 7 of 7) sorted by relevance
219 List<T> newList = new ArrayList<>(); in mergeToUnmodifiableList() local220 newList.addAll(a); in mergeToUnmodifiableList()221 newList.addAll(b); in mergeToUnmodifiableList()222 return Collections.unmodifiableList(newList); in mergeToUnmodifiableList()
79 List<String> newList = createRandomCheeseList(oldList, 5); in onCreate()81 new MyCallback(oldList, newList)); in onCreate()83 return new Pair(newList, diffResult); in onCreate()
484 List<Sensor> oldList, List<Sensor> newList, List<Sensor> updated, in diffSortedSensorList() argument491 if (j < oldList.size() && ( i >= newList.size() || in diffSortedSensorList()492 newList.get(i).getHandle() > oldList.get(j).getHandle()) ) { in diffSortedSensorList()498 } else if (i < newList.size() && ( j >= oldList.size() || in diffSortedSensorList()499 newList.get(i).getHandle() < oldList.get(j).getHandle())) { in diffSortedSensorList()502 added.add(newList.get(i)); in diffSortedSensorList()505 updated.add(newList.get(i)); in diffSortedSensorList()508 } else if (i < newList.size() && j < oldList.size() && in diffSortedSensorList()509 newList.get(i).getHandle() == oldList.get(j).getHandle()) { in diffSortedSensorList()
269 List<ProcessErrorStateInfo> newList = new ArrayList<ProcessErrorStateInfo>(errList.size()); in reportWrappedListContents() local271 newList.add(err.info); in reportWrappedListContents()273 return reportListContents(newList); in reportWrappedListContents()
950 public void enforceShortcutCountsBeforeOperation(List<ShortcutInfo> newList, in enforceShortcutCountsBeforeOperation() argument968 for (int i = newList.size() - 1; i >= 0; i--) { in enforceShortcutCountsBeforeOperation()969 final ShortcutInfo newShortcut = newList.get(i); in enforceShortcutCountsBeforeOperation()
12213 int[] newList = new int[N+1];12214 System.arraycopy(mBackgroundAppIdWhitelist, 0, newList, 0, N);12215 newList[N] = UserHandle.getAppId(uid);12216 mBackgroundAppIdWhitelist = newList;
META-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/ ...