HomeSort by relevance Sort by last modified time
    Searched defs:arrayCopy (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/hardware/camera2/dispatch/
ArgumentReplacingDispatcher.java 70 args = arrayCopy(args); // don't change in-place since it can affect upstream dispatches
77 private static Object[] arrayCopy(Object[] array) {
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java 48 List<TValue> arrayCopy = new ArrayList<TValue>(collection);
49 Collections.sort(arrayCopy);
52 int arrayIndex = (int) Math.round(arrayCopy.size() * 0.95 + .5) - 1;
54 return arrayCopy.get(arrayIndex);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableList.java 124 arrayCopy(array, 0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12);
125 arrayCopy(array, paramCount, others);
142 private static void arrayCopy(Object[] dest, int pos, Object... source) {
143 System.arraycopy(source, 0, dest, pos, source.length);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.text_3.5.0.v20100601-1300.jar 

Completed in 83 milliseconds