Searched defs:newValue (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/util/
H A DLruCache.java237 * @param newValue the new value for {@code key}, if it exists. If non-null,
241 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java204 * @param newValue the new value for {@code key}, if it exists. If non-null,
208 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java433 String newValue) {
437 newPrefList.append(key).append(':').append(newValue);
454 newPrefList.append(key).append(':').append(newValue);
471 newPrefList.append(key).append(':').append(newValue);
432 updateValueInCommaSeparatedList(String list, String key, String newValue) argument
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java751 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
/frameworks/base/libs/rs/driver/
H A DrsdRuntimeMath.cpp271 static int32_t SC_AtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) { argument
275 int32_t ret = android_atomic_release_cas(expectedValue, newValue, ptr);
/frameworks/base/core/java/android/preference/
H A DPreference.java140 * @param newValue The new value of the Preference.
143 boolean onPreferenceChange(Preference preference, Object newValue); argument
880 * @param newValue The new value of this Preference.
884 protected boolean callChangeListener(Object newValue) { argument
885 return mOnChangeListener == null ? true : mOnChangeListener.onPreferenceChange(this, newValue);
/frameworks/base/services/input/
H A DInputReader.cpp5910 float newValue, highNewValue; local
5913 newValue = (axis.rawAxisInfo.maxValue - rawEvent->value)
5919 newValue = (axis.axisInfo.splitValue - rawEvent->value)
5923 newValue = 0.0f;
5927 newValue = 0.0f;
5932 newValue = rawEvent->value * axis.scale + axis.offset;
5936 axis.newValue = newValue;
5995 axis.newValue, axis.currentValue, axis.min, axis.max)) {
5996 axis.currentValue = axis.newValue;
6010 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6026 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h1594 float newValue; // most recent value member in struct:android::JoystickInputMapper::Axis
1619 this->newValue = 0;
1635 float newValue, float currentValue, float min, float max);
1637 float newValue, float currentValue, float thresholdValue);

Completed in 200 milliseconds