Searched refs:newValue (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/core/java/android/server/
H A DBluetoothAdapterProperties.java78 String newValue = null;
91 newValue = str.toString();
94 newValue = properties[++i];
96 mPropertiesMap.put(name, newValue);
H A DBluetoothDeviceProperties.java52 String newValue = null;
67 newValue = str.toString();
70 newValue = properties[++i];
73 propertyValues.put(name, newValue);
/frameworks/base/core/java/android/preference/
H A DTwoStatePreference.java60 boolean newValue = !isChecked();
64 if (!callChangeListener(newValue)) {
68 setChecked(newValue);
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/libs/rs/scriptc/
H A Drs_atomic.rsh222 * If the value at addr matches compareValue then newValue is written.
226 * @param newValue The value to write if the test passes.
231 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
236 * If the value at addr matches compareValue then newValue is written.
240 * @param newValue The value to write if the test passes.
245 rsAtomicCas(volatile uint32_t* addr, int32_t compareValue, int32_t newValue);
/frameworks/base/core/tests/coretests/src/android/util/
H A DLruCacheTest.java373 boolean evicted, String key, String oldValue, String newValue) {
411 boolean evicted, String key, String oldValue, String newValue) {
412 log.add(key + "=" + oldValue + ">" + newValue);
438 boolean evicted, String key, Integer oldValue, Integer newValue) {
439 log.add(key + "=" + oldValue + ">" + newValue);
458 boolean evicted, String key, String oldValue, String newValue) {
461 : (key + "=" + oldValue + ">" + newValue);
/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/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/packages/SettingsProvider/src/com/android/providers/settings/
H A DDatabaseHelper.java287 int newValue = (1 << AudioManager.STREAM_RING)
292 + String.valueOf(newValue) + "')");
400 int newValue = (1 << AudioManager.STREAM_RING)
406 + String.valueOf(newValue) + "')");
817 int newValue = (1 << AudioManager.STREAM_RING)
824 + String.valueOf(newValue) + "')");
H A DSettingsProvider.java751 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
/frameworks/base/core/java/android/os/
H A DStrictMode.java2160 final int newValue = value != null ? value + 1 : 1;
2161 sInstanceCounts.put(mKlass, newValue);
2171 final int newValue = value - 1;
2172 if (newValue > 0) {
2173 sInstanceCounts.put(mKlass, newValue);
/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/services/input/
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);
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...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java1018 boolean newValue = !mCheckStates.get(position, false);
1019 mCheckStates.put(position, newValue);
1021 if (newValue) {
1027 if (newValue) {
1034 position, id, newValue);
1038 boolean newValue = !mCheckStates.get(position, false);
1039 if (newValue) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java2181 SQLiteCompiledSql newValue) {
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java9373 int newValue = (curValue&~diff) | (visibility&diff);
9374 if (newValue != curValue) {
9376 ws.mSystemUiVisibility = newValue;
9378 if (newValue != curValue || ws.mAttrs.hasSystemUiListeners) {
9380 visibility, newValue, diff);

Completed in 308 milliseconds