Home
last modified time | relevance | path

Searched refs:newValues (Results 1 – 15 of 15) 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/util/
DLongArray.java100 final long[] newValues = ArrayUtils.newUnpaddedLongArray(newCapacity); in ensureCapacity() local
101 System.arraycopy(mValues, 0, newValues, 0, currentSize); in ensureCapacity()
102 mValues = newValues; in ensureCapacity()
DIntArray.java120 final int[] newValues = ArrayUtils.newUnpaddedIntArray(newCapacity); in ensureCapacity() local
121 System.arraycopy(mValues, 0, newValues, 0, currentSize); in ensureCapacity()
122 mValues = newValues; in ensureCapacity()
/frameworks/base/tools/aapt2/link/
DProductFilter.cpp82 std::vector<std::unique_ptr<ResourceConfigValue>> newValues; in consume() local
102 newValues.push_back(std::move(*valueToKeep)); in consume()
111 entry->values = std::move(newValues); in consume()
/frameworks/base/core/java/com/android/internal/app/
DSuggestedLocaleAdapter.java219 final ArrayList<LocaleStore.LocaleInfo> newValues = new ArrayList<>(); in performFiltering() local
229 newValues.add(value); in performFiltering()
233 results.values = newValues; in performFiltering()
234 results.count = newValues.size(); in performFiltering()
/frameworks/base/core/java/android/widget/
DArrayAdapter.java516 final ArrayList<T> newValues = new ArrayList<>(); in performFiltering() local
524 newValues.add(value); in performFiltering()
529 newValues.add(value); in performFiltering()
536 results.values = newValues; in performFiltering()
537 results.count = newValues.size(); in performFiltering()
DSimpleAdapter.java379 ArrayList<Map<String, ?>> newValues = new ArrayList<Map<String, ?>>(count); in performFiltering() local
397 newValues.add(h); in performFiltering()
405 results.values = newValues; in performFiltering()
406 results.count = newValues.size(); in performFiltering()
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
DMergedBinding.java100 final List<String> newValues = new ArrayList<String>(); in toJavaCode() local
102 newValues.add(expr.toCode().generate()); in toJavaCode()
113 final String[] expressions = concat(oldValues, newValues, String.class); in toJavaCode()
/frameworks/base/core/java/android/transition/
DVisibility.java454 public boolean isTransitionRequired(TransitionValues startValues, TransitionValues newValues) { in isTransitionRequired() argument
455 if (startValues == null && newValues == null) { in isTransitionRequired()
458 if (startValues != null && newValues != null && in isTransitionRequired()
459 newValues.values.containsKey(PROPNAME_VISIBILITY) != in isTransitionRequired()
465 VisibilityInfo changeInfo = getVisibilityChangeInfo(startValues, newValues); in isTransitionRequired()
DTransition.java743 TransitionValues newValues = endValues.viewValues.get(view); in createAnimators() local
744 if (newValues != null) { in createAnimators()
747 newValues.values.get(properties[j])); in createAnimators()
1821 private static boolean isValueChanged(TransitionValues oldValues, TransitionValues newValues, in isValueChanged() argument
1823 if (oldValues.values.containsKey(key) != newValues.values.containsKey(key)) { in isValueChanged()
1828 Object newValue = newValues.values.get(key); in isValueChanged()
/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/database/
DDatabaseUtils.java1432 public static String[] appendSelectionArgs(String[] originalValues, String[] newValues) { in appendSelectionArgs() argument
1434 return newValues; in appendSelectionArgs()
1436 String[] result = new String[originalValues.length + newValues.length ]; in appendSelectionArgs()
1438 System.arraycopy(newValues, 0, result, originalValues.length, newValues.length); in appendSelectionArgs()
/frameworks/base/core/java/android/hardware/camera2/impl/
DCameraMetadataNative.java1015 int[] newValues = new int[availableFormat.length]; in setAvailableFormats() local
1017 newValues[i] = availableFormat[i]; in setAvailableFormats()
1019 newValues[i] = NATIVE_JPEG_FORMAT; in setAvailableFormats()
1023 setBase(CameraCharacteristics.SCALER_AVAILABLE_FORMATS, newValues); in setAvailableFormats()
/frameworks/base/core/java/android/view/
DMotionEvent.java3647 float[] newValues = new float[count * 2]; in setAxisValue() local
3648 System.arraycopy(values, 0, newValues, 0, index); in setAxisValue()
3649 System.arraycopy(values, index, newValues, index + 1, in setAxisValue()
3651 values = newValues; in setAxisValue()
/frameworks/data-binding/prebuilds/1.0-rc0/
Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/ ...