/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSettingsFragment.java | 292 * @param newValue The new value of the Preference 296 public boolean onPreferenceChange(Preference preference, Object newValue) { 301 String summary = newValue.toString().trim(); 309 final String summary = newValue.toString().trim(); 319 String signature = newValue.toString(); 328 final String summary = newValue.toString(); 360 final String summary = newValue.toString(); 369 (Boolean) newValue); 375 (Boolean) newValue); 381 (Boolean) newValue); [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
MapMakerInternalMapTest.java | 574 Object newValue = new Object(); 583 assertFalse(segment.replace(key, hash, oldValue, newValue)); 591 assertTrue(segment.replace(key, hash, oldValue, newValue)); 593 assertSame(newValue, segment.get(key, hash)); 596 assertFalse(segment.replace(key, hash, oldValue, newValue)); 598 assertSame(newValue, segment.get(key, hash)); 604 assertFalse(segment.replace(key, hash, oldValue, newValue)); 618 Object newValue = new Object(); 627 assertNull(segment.replace(key, hash, newValue)); 635 assertSame(oldValue, segment.replace(key, hash, newValue)); [all...] |
/external/icu/icu4c/source/i18n/ |
ucal.cpp | 342 int32_t newValue) 347 ((Calendar*)cal)->setLenient((UBool)newValue); 351 ((Calendar*)cal)->setFirstDayOfWeek((UCalendarDaysOfWeek)newValue); 355 ((Calendar*)cal)->setMinimalDaysInFirstWeek((uint8_t)newValue); 359 ((Calendar*)cal)->setRepeatedWallTimeOption((UCalendarWallTimeOption)newValue); 363 ((Calendar*)cal)->setSkippedWallTimeOption((UCalendarWallTimeOption)newValue);
|
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/ |
TextViewBindingAdapter.java | 349 final TextWatcher newValue; 351 newValue = null; 353 newValue = new TextWatcher() { 379 final TextWatcher oldValue = ListenerUtil.trackListener(view, newValue, R.id.textWatcher); 383 if (newValue != null) { 384 view.addTextChangedListener(newValue);
|
ViewBindingAdapter.java | 195 View.OnLayoutChangeListener newValue) { 200 if (newValue != null) { 201 view.addOnLayoutChangeListener(newValue);
|
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ |
BNNMTest.java | 98 int newValue = (originalValue + delta); 99 if (newValue < -127) { 100 newValue = -127; 102 if (newValue > 127) { 103 newValue = 127; 105 data[n] = (byte)(newValue);
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/ |
Picker.java | 344 * @param newValue A new value desired to be set on the column. 346 public void onColumnValueChanged(int columnIndex, int newValue) { 348 if (column.getCurrentValue() != newValue) { 349 column.setCurrentValue(newValue); 431 int newValue = mColumns.get(colIndex).getMinValue() + position; 432 onColumnValueChanged(colIndex, newValue);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ValuesDelta.java | 142 Object newValue = mAfter.get(key); 146 return newValue != null; 149 return !oldValue.equals(newValue); 215 Object newValue = mAfter.get(key); 218 if (newValue != null) { 221 } else if (!oldValue.equals(newValue)) {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractContainerTester.java | 75 * @param newValue the new container instance 77 protected C resetContainer(C newValue) { 78 container = newValue;
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultimapPutTester.java | 75 V newValue = sampleValues().e3; 79 assertTrue(multimap().put(key, newValue)); 81 assertGet(key, oldValue, newValue);
|
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/ |
AbstractAgentMojo.java | 150 final String newValue = createAgentOptions().prependVMArguments( 152 getLog().info(name + " set to " + newValue); 153 projectProperties.setProperty(name, newValue);
|
/external/proguard/src/proguard/evaluation/ |
Variables.java | 136 Value newValue = thisValue.generalize(otherValue); 138 changed = changed || !thisValue.equals(newValue); 140 this.values[index] = newValue;
|
Stack.java | 137 Value newValue = null; 143 newValue = thisValue.generalize(otherValue); 146 changed = changed || !thisValue.equals(newValue); 148 values[index] = newValue;
|
/frameworks/base/core/java/com/android/internal/widget/ |
NumericTextView.java | 271 final int newValue = mValue * RADIX + keyValue; 272 if (newValue <= mMaxValue) { 273 mValue = newValue;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/ |
DndTile.java | 139 final boolean newValue = zen != Global.ZEN_MODE_OFF; 140 final boolean valueChanged = state.value != newValue; 141 state.value = newValue;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NavigationBarGestureHelper.java | 303 public void onTuningChanged(String key, String newValue) { 306 mDockWindowEnabled = newValue != null && (Integer.parseInt(newValue) != 0);
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
ConfigureWifiSettings.java | 166 public boolean onPreferenceChange(Preference preference, Object newValue) { 172 NetworkScorerAppManager.getScorer(context, (String) newValue); 200 String stringValue = (String) newValue;
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/ |
GeneralPrefsFragment.java | 112 public boolean onPreferenceChange(Preference preference, Object newValue) { 122 final String removalAction = newValue.toString(); 126 AUTO_ADVANCE_VALUES[mAutoAdvance.findIndexOfValue((String) newValue)];
|
/external/guava/guava/src/com/google/common/collect/ |
ComputingConcurrentHashMap.java | 242 public void clear(ValueReference<K, V> newValue) {} 282 public void clear(ValueReference<K, V> newValue) {} 345 public void clear(ValueReference<K, V> newValue) { 348 setValueReference(newValue);
|
ConcurrentHashMultiset.java | 232 int newValue = IntMath.checkedAdd(oldValue, occurrences); 233 if (existingCounter.compareAndSet(oldValue, newValue)) { 234 // newValue can't == 0, so no need to check & remove 289 int newValue = Math.max(0, oldValue - occurrences); 290 if (existingCounter.compareAndSet(oldValue, newValue)) { 291 if (newValue == 0) { 330 int newValue = oldValue - occurrences; 331 if (existingCounter.compareAndSet(oldValue, newValue)) { 332 if (newValue == 0) {
|
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/ |
Multibinder.java | 375 final T newValue = binding.getProvider().get(); 376 checkConfiguration(newValue != null, 379 Binding<T> duplicateBinding = result.put(newValue, binding); 381 throw newDuplicateValuesException(result, binding, newValue, duplicateBinding); 541 final T newValue, 543 T oldValue = getOnlyElement(filter(existingBindings.keySet(), equalTo(newValue))); 545 String newString = newValue.toString(); 551 newValue, 562 newValue,
|
/frameworks/av/services/camera/libcameraservice/utils/ |
TagMonitor.h | 86 const T &newValue);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
RecentsDebugFlags.java | 85 public void onTuningChanged(String key, String newValue) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
Clock.java | 166 public void onTuningChanged(String key, String newValue) { 168 mShowSeconds = newValue != null && Integer.parseInt(newValue) != 0; 171 ArraySet<String> list = StatusBarIconController.getIconBlacklist(newValue);
|
/libcore/luni/src/test/resources/prefs/java/util/prefs/ |
userprefs.xml | 44 <entry key="prefskey" value="newvalue" />
|