Home
last modified time | relevance | path

Searched refs:newValues (Results 1 – 8 of 8) sorted by relevance

/frameworks/support/v4/java/android/support/v4/database/
DDatabaseUtilsCompat.java49 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { in appendSelectionArgs() argument
51 return newValues; in appendSelectionArgs()
53 String[] result = new String[originalValues.length + newValues.length ]; in appendSelectionArgs()
55 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length); in appendSelectionArgs()
/frameworks/base/core/java/android/widget/
DArrayAdapter.java476 final ArrayList<T> newValues = new ArrayList<T>(); in performFiltering() local
484 newValues.add(value); in performFiltering()
492 newValues.add(value); in performFiltering()
499 results.values = newValues; in performFiltering()
500 results.count = newValues.size(); in performFiltering()
DSimpleAdapter.java343 ArrayList<Map<String, ?>> newValues = new ArrayList<Map<String, ?>>(count); in performFiltering() local
361 newValues.add(h); in performFiltering()
369 results.values = newValues; in performFiltering()
370 results.count = newValues.size(); in performFiltering()
/frameworks/base/core/java/android/app/
DLauncherActivity.java207 ArrayList<ListItem> newValues = new ArrayList<ListItem>(count); in performFiltering() local
219 newValues.add(item); in performFiltering()
225 results.values = newValues; in performFiltering()
226 results.count = newValues.size(); in performFiltering()
/frameworks/base/core/java/android/transition/
DTransition.java473 TransitionValues newValues = endValues.viewValues.get(view); in createAnimators() local
474 if (newValues != null) { in createAnimators()
477 newValues.values.get(properties[j])); in createAnimators()
1263 TransitionValues newValues = mEndValues.viewValues != null ? in playTransition() local
1265 if (newValues == null) { in playTransition()
1266 newValues = mEndValues.idValues.get(oldView.getId()); in playTransition()
1271 if (newValues != null) { in playTransition()
1274 Object newValue = newValues.values.get(key); in playTransition()
/frameworks/base/core/java/android/hardware/camera2/impl/
DCameraMetadataNative.java606 int[] newValues = new int[availableFormat.length]; in setAvailableFormats() local
608 newValues[i] = availableFormat[i]; in setAvailableFormats()
610 newValues[i] = NATIVE_JPEG_FORMAT; in setAvailableFormats()
614 setBase(CameraCharacteristics.SCALER_AVAILABLE_FORMATS, newValues); in setAvailableFormats()
/frameworks/base/core/java/android/database/
DDatabaseUtils.java1412 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { in appendSelectionArgs() argument
1414 return newValues; in appendSelectionArgs()
1416 String[] result = new String[originalValues.length + newValues.length ]; in appendSelectionArgs()
1418 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length); in appendSelectionArgs()
/frameworks/base/core/java/android/view/
DMotionEvent.java3443 float[] newValues = new float[count * 2]; in setAxisValue() local
3444 System.arraycopy(values, 0, newValues, 0, index); in setAxisValue()
3445 System.arraycopy(values, index, newValues, index + 1, in setAxisValue()
3447 values = newValues; in setAxisValue()