/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
H A D | StringFloat.java | 24 public StringFloat(String newKey, float newValue) { argument 26 value = newValue;
|
/frameworks/base/core/java/android/database/sqlite/ |
H A D | SQLiteConnection.java | 250 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 D | BaseFragmentPagerAdapter.java | 184 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 D | rs_core.c | 16 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 D | rs_atomic.rsh | 222 * 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 D | TwoStatePreference.java | 62 boolean newValue = !isChecked(); 66 if (!callChangeListener(newValue)) { 70 setChecked(newValue);
|
H A D | Preference.java | 148 * @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 D | LruCacheTest.java | 373 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 D | TtsEngines.java | 444 String newValue) { 448 newPrefList.append(key).append(':').append(newValue); 465 newPrefList.append(key).append(':').append(newValue); 482 newPrefList.append(key).append(':').append(newValue); 443 updateValueInCommaSeparatedList(String list, String key, String newValue) argument
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
H A D | TimePickerDialog.java | 392 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 D | RadialPickerLayout.java | 98 void onValueSelected(int pickerIndex, int newValue, boolean autoAdvance); argument
|
/frameworks/base/core/java/android/util/ |
H A D | LruCache.java | 261 * @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 D | MediaRouteChooserDialogFragment.java | 150 void changeVolume(int newValue) { argument 157 newValue = Math.max(0, Math.min(newValue, maxVolume)); 158 selectedRoute.requestSetVolume(newValue);
|
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
H A D | LruCache.java | 271 * @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 D | WifiP2pGroupList.java | 54 WifiP2pGroup oldValue, WifiP2pGroup newValue) {
|
/frameworks/support/v4/java/android/support/v4/util/ |
H A D | LruCache.java | 207 * @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 D | SettingsProvider.java | 622 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 D | DatabaseHelper.java | 338 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 D | Transition.java | 1264 Object newValue = newValues.values.get(key); 1265 if (oldValue != null && newValue != null && 1266 !oldValue.equals(newValue)) { 1270 "oldValue != newValue for " + key + 1271 ": old, new = " + oldValue + ", " + newValue);
|
/frameworks/base/core/java/android/os/ |
H A D | StrictMode.java | 2249 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 D | InputReader.cpp | 6391 float newValue, highNewValue; local 6394 newValue = (axis.rawAxisInfo.maxValue - rawEvent->value) 6400 newValue = (axis.axisInfo.splitValue - rawEvent->value) 6404 newValue = 0.0f; 6408 newValue = 0.0f; 6413 newValue = rawEvent->value * axis.scale + axis.offset; 6417 axis.newValue = newValue; 6490 axis.newValue, axis.currentValue, axis.min, axis.max)) { 6491 axis.currentValue = axis.newValue; 6505 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument 6521 hasMovedNearerToValueWithinFilteredRange( float filter, float newValue, float currentValue, float thresholdValue) argument [all...] |
H A D | InputReader.h | 1760 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 D | HWComposer.cpp | 492 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 D | WifiWatchdogStateMachine.java | 1011 public void update(double newValue, int newVolume) { argument 1014 double newProduct = newValue * newVolume;
|
/frameworks/base/media/java/android/media/ |
H A D | RemoteControlClient.java | 723 * @param newValue the Object storing the new value for the key. 725 public abstract void onMetadataUpdate(int key, Object newValue); argument
|