Searched defs:targetValue (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/location/tests/locationtests/src/android/location/
H A DSatelliteInfo.java129 private int setBit(int targetValue, boolean value, int index) { argument
131 targetValue = targetValue | (1 << index);
133 targetValue = targetValue & ~(1 << index);
135 return targetValue;
144 private int setRange(int targetValue, int value, int fromIndex, int toIndex) { argument
150 targetValue &= (~valueMask);
151 targetValue |= value;
152 return targetValue;
[all...]
/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java1786 * Sets a view as autofilled if the current value is the {code targetValue}.
1789 * @param targetValue The value we want to fill into view
1791 private void setAutofilledIfValuesIs(@NonNull View view, @Nullable AutofillValue targetValue) { argument
1793 if (Objects.equals(currentValue, targetValue)) {
1798 mLastAutofilledData.put(view.getAutofillId(), targetValue);

Completed in 44 milliseconds