HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 276 - 300 of 1133) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/tests/coretests/src/android/util/
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);
  /external/icu/icu4c/source/i18n/
decimfmtimpl.cpp 626 DecimalFormatImpl::setMinimumSignificantDigits(int32_t newValue) {
627 fMinSigDigits = newValue;
633 DecimalFormatImpl::setMaximumSignificantDigits(int32_t newValue) {
634 fMaxSigDigits = newValue;
648 DecimalFormatImpl::setScientificNotation(UBool newValue) {
649 fUseScientific = newValue;
654 DecimalFormatImpl::setSignificantDigitsUsed(UBool newValue) {
655 fUseSigDigits = newValue;
660 DecimalFormatImpl::setGroupingSize(int32_t newValue) {
661 fGrouping.fGrouping = newValue;
    [all...]
numfmt.cpp     [all...]
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LocalCache.java 180 public boolean replace(K key, V oldValue, V newValue) {
183 put(key, newValue);
369 V newValue = valueLoader.call();
370 localCache.put(key, newValue);
371 return newValue;
706 public V setValue(V newValue) {
  /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/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 524 @Override public final void setRequestProperty(String field, String newValue) {
531 if (newValue == null) {
543 setProtocols(newValue, false /* append */);
545 requestHeaders.set(field, newValue);
549 @Override public void setIfModifiedSince(long newValue) {
550 super.setIfModifiedSince(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/src/com/google/common/cache/
LocalCache.java 665 void notifyNewValue(@Nullable V newValue);
725 public void notifyNewValue(Object newValue) {}
    [all...]
  /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/icu/icu4c/source/i18n/unicode/
unum.h     [all...]
  /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);
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ViewBindingAdapter.java 195 View.OnLayoutChangeListener newValue) {
200 if (newValue != null) {
201 view.addOnLayoutChangeListener(newValue);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeEnabler.java 129 public boolean onPreferenceChange(final Preference pref, final Object newValue) {
130 if (!(newValue instanceof Boolean)) {
133 final boolean isChecking = (Boolean) newValue;
  /packages/apps/Settings/src/com/android/settings/wifi/
ConfigureWifiSettings.java 197 public boolean onPreferenceChange(Preference preference, Object newValue) {
203 NetworkScorerAppManager.getScorer(context, (String) newValue);
231 String stringValue = (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);
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ContinuingHttpServletRequest.java 135 @Override public void setValue(String newValue) {
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 542 String newValue) {
546 newPrefList.append(key).append(':').append(newValue);
563 newPrefList.append(key).append(':').append(newValue);
580 newPrefList.append(key).append(':').append(newValue);
  /frameworks/rs/driver/runtime/
rs_core.c 44 extern int32_t __attribute__((overloadable)) rsAtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) {
45 return __sync_val_compare_and_swap(ptr, expectedValue, newValue);
48 extern uint32_t __attribute__((overloadable)) rsAtomicCas(volatile uint32_t *ptr, uint32_t expectedValue, uint32_t newValue) {
49 return __sync_val_compare_and_swap(ptr, expectedValue, newValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
EditTextRule.java 76 @Nullable Boolean newValue) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractFieldMatrix.java 786 final T newValue = visitor.visit(row, column, oldValue);
787 setEntry(row, column, newValue);
818 final T newValue = visitor.visit(row, column, oldValue);
819 setEntry(row, column, newValue);
850 final T newValue = visitor.visit(row, column, oldValue);
851 setEntry(row, column, newValue);
882 final T newValue = visitor.visit(row, column, oldValue);
883 setEntry(row, column, newValue);
    [all...]
AbstractRealMatrix.java 788 final double newValue = visitor.visit(row, column, oldValue);
789 setEntry(row, column, newValue);
821 final double newValue = visitor.visit(row, column, oldValue);
822 setEntry(row, column, newValue);
854 final double newValue = visitor.visit(row, column, oldValue);
855 setEntry(row, column, newValue);
887 final double newValue = visitor.visit(row, column, oldValue);
888 setEntry(row, column, newValue);
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
MutableTypeToInstanceMapTest.java 149 Integer newValue = map.getInstance(Integer.class);
150 assertEquals(7, (int) newValue);
  /frameworks/base/libs/hwui/tests/common/
TestUtils.h 86 ScopedProperty(T& property, T newValue)
89 property = newValue;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QuickQSPanel.java 121 public void onTuningChanged(String key, String newValue) {
143 public void onTuningChanged(String key, String newValue) {

Completed in 3904 milliseconds

<<11121314151617181920>>