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

12

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DStringFloat.java24 public StringFloat(String newKey, float newValue) { argument
26 value = newValue;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java250 final long newValue = SQLiteGlobal.getDefaultPageSize();
252 if (value != newValue) {
253 execute("PRAGMA page_size=" + newValue, null, null);
260 final long newValue = SQLiteGlobal.getWALAutoCheckpoint();
262 if (value != newValue) {
263 executeForLong("PRAGMA wal_autocheckpoint=" + newValue, null, null);
270 final long newValue = SQLiteGlobal.getJournalSizeLimit();
272 if (value != newValue) {
273 executeForLong("PRAGMA journal_size_limit=" + newValue, null, null);
280 final long newValue
300 setSyncMode(String newValue) argument
319 setJournalMode(String newValue) argument
1256 entryRemoved(boolean evicted, String key, PreparedStatement oldValue, PreparedStatement newValue) argument
[all...]
/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/rs/driver/runtime/
H A Drs_core.c16 extern int32_t __attribute__((overloadable)) rsAtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) { argument
17 return __sync_val_compare_and_swap(ptr, expectedValue, newValue);
20 extern uint32_t __attribute__((overloadable)) rsAtomicCas(volatile uint32_t *ptr, uint32_t expectedValue, uint32_t newValue) { argument
21 return __sync_val_compare_and_swap((volatile int32_t *)ptr, (int32_t)expectedValue, (int32_t)newValue);
/frameworks/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, uint32_t compareValue, uint32_t newValue);
/frameworks/base/core/java/android/preference/
H A DTwoStatePreference.java62 boolean newValue = !isChecked();
66 if (!callChangeListener(newValue)) {
70 setChecked(newValue);
H A DPreference.java148 * @param newValue The new value of the Preference.
151 boolean onPreferenceChange(Preference preference, Object newValue); argument
892 * @param newValue The new value of this Preference.
896 protected boolean callChangeListener(Object newValue) { argument
897 return mOnChangeListener == null ? true : mOnChangeListener.onPreferenceChange(this, 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.java451 String newValue) {
455 newPrefList.append(key).append(':').append(newValue);
472 newPrefList.append(key).append(':').append(newValue);
489 newPrefList.append(key).append(':').append(newValue);
450 updateValueInCommaSeparatedList(String list, String key, String newValue) argument
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DTimePickerDialog.java392 public void onValueSelected(int pickerIndex, int newValue, boolean autoAdvance) { argument
394 setHour(newValue, false);
395 String announcement = String.format("%d", newValue);
400 mTimePicker.setContentDescription(mHourPickerDescription + ": " + newValue);
405 setMinute(newValue);
406 mTimePicker.setContentDescription(mMinutePickerDescription + ": " + newValue);
408 updateAmPmDisplay(newValue);
H A DRadialPickerLayout.java98 void onValueSelected(int pickerIndex, int newValue, boolean autoAdvance); argument
/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/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pGroupList.java54 WifiP2pGroup oldValue, WifiP2pGroup newValue) {
/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/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java622 final String newValue = (args == null)
642 values.put(Settings.NameValueTable.VALUE, newValue);
644 if (LOCAL_LOGV) Slog.v(TAG, "call_put(system:" + request + "=" + newValue + ") for " + callingUser);
647 if (LOCAL_LOGV) Slog.v(TAG, "call_put(secure:" + request + "=" + newValue + ") for " + callingUser);
650 if (LOCAL_LOGV) Slog.v(TAG, "call_put(global:" + request + "=" + newValue + ") for " + callingUser);
1112 protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) { argument
H A DDatabaseHelper.java338 int newValue = (1 << AudioManager.STREAM_RING)
343 + String.valueOf(newValue) + "')");
451 int newValue = (1 << AudioManager.STREAM_RING)
457 + String.valueOf(newValue) + "')");
868 int newValue = (1 << AudioManager.STREAM_RING)
875 + String.valueOf(newValue) + "')");
/frameworks/base/core/java/android/transition/
H A DTransition.java1274 Object newValue = newValues.values.get(key);
1275 if (oldValue != null && newValue != null &&
1276 !oldValue.equals(newValue)) {
1280 "oldValue != newValue for " + key +
1281 ": old, new = " + oldValue + ", " + newValue);
/frameworks/base/core/java/android/os/
H A DStrictMode.java2249 final int newValue = value != null ? value + 1 : 1;
2250 sInstanceCounts.put(mKlass, newValue);
2260 final int newValue = value - 1;
2261 if (newValue > 0) {
2262 sInstanceCounts.put(mKlass, newValue);
/frameworks/base/services/input/
H A DInputReader.cpp6388 float newValue, highNewValue; local
6391 newValue = (axis.rawAxisInfo.maxValue - rawEvent->value)
6397 newValue = (axis.axisInfo.splitValue - rawEvent->value)
6401 newValue = 0.0f;
6405 newValue = 0.0f;
6410 newValue = rawEvent->value * axis.scale + axis.offset;
6414 axis.newValue = newValue;
6487 axis.newValue, axis.currentValue, axis.min, axis.max)) {
6488 axis.currentValue = axis.newValue;
6502 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
6518 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument
[all...]
H A DInputReader.h1760 float newValue; // most recent value member in struct:android::JoystickInputMapper::Axis
1786 this->newValue = 0;
1802 float newValue, float currentValue, float min, float max);
1804 float newValue, float currentValue, float thresholdValue);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp492 const int32_t newValue = enabled ? eventBit : 0; local
494 if (newValue != oldValue) {
499 events = (events & ~eventBit) | newValue;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiWatchdogStateMachine.java1011 public void update(double newValue, int newVolume) { argument
1014 double newProduct = newValue * newVolume;
/frameworks/base/media/java/android/media/
H A DRemoteControlClient.java723 * @param newValue the Object storing the new value for the key.
725 public abstract void onMetadataUpdate(int key, Object newValue); argument
H A DMediaRouter.java1274 static void systemVolumeChanged(int newValue) { argument

Completed in 735 milliseconds

12