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

/frameworks/base/core/java/android/util/
H A DLruCache.java261 * @param newValue the new value for {@code key}, if it exists. If non-null,
265 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java271 * @param newValue the new value for {@code key}, if it exists. If non-null,
275 protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) {} argument
/frameworks/ex/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java181 Fragment oldValue, Fragment newValue) {
183 if (evicted || (newValue != null && oldValue != newValue)) {
180 entryRemoved(boolean evicted, String key, Fragment oldValue, Fragment newValue) argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseFragmentPagerAdapter.java184 Fragment oldValue, Fragment newValue) {
186 if (evicted || (newValue != null && oldValue != newValue)) {
183 entryRemoved(boolean evicted, String key, Fragment oldValue, Fragment newValue) argument
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java207 * @param newValue the new value for {@code key}, if it exists. If non-null,
211 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.java588 final String newValue = (args == null)
593 values.put(Settings.NameValueTable.VALUE, newValue);
595 if (LOCAL_LOGV) Slog.v(TAG, "call_put(system:" + request + "=" + newValue + ") for " + callingUser);
598 if (LOCAL_LOGV) Slog.v(TAG, "call_put(secure:" + request + "=" + newValue + ") for " + callingUser);
601 if (LOCAL_LOGV) Slog.v(TAG, "call_put(global:" + request + "=" + newValue + ") for " + callingUser);
1089 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java160 void changeVolume(int newValue) { argument
167 newValue = Math.max(0, Math.min(newValue, maxVolume));
168 selectedRoute.requestSetVolume(newValue);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiWatchdogStateMachine.java1022 public void update(double newValue, int newVolume) { argument
1025 double newProduct = newValue * newVolume;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp465 const int32_t newValue = enabled ? eventBit : 0; local
467 if (newValue != oldValue) {
472 events = (events & ~eventBit) | newValue;
/frameworks/rs/driver/
H A DrsdRuntimeMath.cpp256 static int32_t SC_AtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) { argument
260 int32_t ret = android_atomic_release_cas(expectedValue, newValue, ptr);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java243 final long newValue = SQLiteGlobal.getDefaultPageSize();
245 if (value != newValue) {
246 execute("PRAGMA page_size=" + newValue, null, null);
253 final long newValue = SQLiteGlobal.getWALAutoCheckpoint();
255 if (value != newValue) {
256 executeForLong("PRAGMA wal_autocheckpoint=" + newValue, null, null);
263 final long newValue = SQLiteGlobal.getJournalSizeLimit();
265 if (value != newValue) {
266 executeForLong("PRAGMA journal_size_limit=" + newValue, null, null);
273 final long newValue
293 setSyncMode(String newValue) argument
312 setJournalMode(String newValue) argument
1249 entryRemoved(boolean evicted, String key, PreparedStatement oldValue, PreparedStatement newValue) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java147 * @param newValue The new value of the Preference.
150 boolean onPreferenceChange(Preference preference, Object newValue); argument
890 * @param newValue The new value of this Preference.
894 protected boolean callChangeListener(Object newValue) { argument
895 return mOnChangeListener == null ? true : mOnChangeListener.onPreferenceChange(this, newValue);
/frameworks/base/media/java/android/media/
H A DMediaRouter.java736 static void systemVolumeChanged(int newValue) { argument
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeMath.cpp259 static int32_t SC_AtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) { argument
263 int32_t ret = android_atomic_release_cas(expectedValue, newValue, ptr);
/frameworks/base/services/input/
H A DInputReader.cpp6238 float newValue, highNewValue; local
6241 newValue = (axis.rawAxisInfo.maxValue - rawEvent->value)
6247 newValue = (axis.axisInfo.splitValue - rawEvent->value)
6251 newValue = 0.0f;
6255 newValue = 0.0f;
6260 newValue = rawEvent->value * axis.scale + axis.offset;
6264 axis.newValue = newValue;
6323 axis.newValue, axis.currentValue, axis.min, axis.max)) {
6324 axis.currentValue = axis.newValue;
6338 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6354 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h1739 float newValue; // most recent value member in struct:android::JoystickInputMapper::Axis
1764 this->newValue = 0;
1780 float newValue, float currentValue, float min, float max);
1782 float newValue, float currentValue, float thresholdValue);

Completed in 4878 milliseconds