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

12

/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 DTwoStatePreference.java61 boolean newValue = !isChecked();
65 if (!callChangeListener(newValue)) {
69 setChecked(newValue);
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/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/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/support/renderscript/v8/rs_support/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/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.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/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/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.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
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/os/
H A DStrictMode.java2199 final int newValue = value != null ? value + 1 : 1;
2200 sInstanceCounts.put(mKlass, newValue);
2210 final int newValue = value - 1;
2211 if (newValue > 0) {
2212 sInstanceCounts.put(mKlass, 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/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.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);
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...]
/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/base/wifi/java/android/net/wifi/
H A DWifiWatchdogStateMachine.java1022 public void update(double newValue, int newVolume) { argument
1025 double newProduct = newValue * newVolume;
/frameworks/base/media/java/android/media/
H A DMediaRouter.java736 static void systemVolumeChanged(int newValue) { argument
/frameworks/base/core/java/android/view/
H A DView.java17039 int newValue = result + 1;
17040 if (newValue > 0x00FFFFFF) newValue = 1; // Roll over to 1, not 0.
17041 if (sNextGeneratedId.compareAndSet(result, newValue)) {

Completed in 8264 milliseconds

12