Searched defs:newValues (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/database/
H A DDatabaseUtilsCompat.java59 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { argument
61 return newValues;
63 String[] result = new String[originalValues.length + newValues.length ];
65 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
/frameworks/base/core/java/android/transition/
H A DVisibility.java461 public boolean isTransitionRequired(TransitionValues startValues, TransitionValues newValues) { argument
462 if (startValues == null && newValues == null) {
465 if (startValues != null && newValues != null &&
466 newValues.values.containsKey(PROPNAME_VISIBILITY) !=
472 VisibilityInfo changeInfo = getVisibilityChangeInfo(startValues, newValues);
H A DTransition.java743 TransitionValues newValues = endValues.viewValues.get(view);
744 if (newValues != null) {
747 newValues.values.get(properties[j]));
1823 private static boolean isValueChanged(TransitionValues oldValues, TransitionValues newValues, argument
1825 if (oldValues.values.containsKey(key) != newValues.values.containsKey(key)) {
1830 Object newValue = newValues.values.get(key);
/frameworks/support/transition/src/main/java/androidx/transition/
H A DVisibility.java458 public boolean isTransitionRequired(TransitionValues startValues, TransitionValues newValues) { argument
459 if (startValues == null && newValues == null) {
462 if (startValues != null && newValues != null
463 && newValues.values.containsKey(PROPNAME_VISIBILITY)
469 VisibilityInfo changeInfo = getVisibilityChangeInfo(startValues, newValues);
H A DTransition.java754 TransitionValues newValues = endValues.mViewValues.get(view);
755 if (newValues != null) {
758 newValues.values.get(properties[j]));
1859 private static boolean isValueChanged(TransitionValues oldValues, TransitionValues newValues, argument
1862 Object newValue = newValues.values.get(key);
/frameworks/base/core/java/android/database/
H A DDatabaseUtils.java1435 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { argument
1437 return newValues;
1439 String[] result = new String[originalValues.length + newValues.length ];
1441 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 253 milliseconds