HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 226 - 250 of 508) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/third_party/icu/source/i18n/
numfmt.cpp 918 NumberFormat::setGroupingUsed(UBool newValue)
920 fGroupingUsed = newValue;
937 NumberFormat::setMaximumIntegerDigits(int32_t newValue)
939 fMaxIntegerDigits = uprv_max(0, uprv_min(newValue, gMaxIntegerDigits));
959 NumberFormat::setMinimumIntegerDigits(int32_t newValue)
961 fMinIntegerDigits = uprv_max(0, uprv_min(newValue, gMinIntegerDigits));
981 NumberFormat::setMaximumFractionDigits(int32_t newValue)
983 fMaxFractionDigits = uprv_max(0, uprv_min(newValue, gMaxIntegerDigits));
1003 NumberFormat::setMinimumFractionDigits(int32_t newValue)
1005 fMinFractionDigits = uprv_max(0, uprv_min(newValue, gMinIntegerDigits))
    [all...]
decimfmt.cpp     [all...]
  /external/icu4c/i18n/
numfmt.cpp 1007 NumberFormat::setGroupingUsed(UBool newValue)
1009 fGroupingUsed = newValue;
1026 NumberFormat::setMaximumIntegerDigits(int32_t newValue)
1028 fMaxIntegerDigits = uprv_max(0, uprv_min(newValue, gMaxIntegerDigits));
1048 NumberFormat::setMinimumIntegerDigits(int32_t newValue)
1050 fMinIntegerDigits = uprv_max(0, uprv_min(newValue, gMinIntegerDigits));
1070 NumberFormat::setMaximumFractionDigits(int32_t newValue)
1072 fMaxFractionDigits = uprv_max(0, uprv_min(newValue, gMaxIntegerDigits));
1092 NumberFormat::setMinimumFractionDigits(int32_t newValue)
1094 fMinFractionDigits = uprv_max(0, uprv_min(newValue, gMinIntegerDigits))
    [all...]
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);
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 600 Object newValue = new Object();
609 assertFalse(segment.replace(key, hash, oldValue, newValue));
617 assertTrue(segment.replace(key, hash, oldValue, newValue));
619 assertSame(newValue, segment.get(key, hash));
622 assertFalse(segment.replace(key, hash, oldValue, newValue));
624 assertSame(newValue, segment.get(key, hash));
630 assertFalse(segment.replace(key, hash, oldValue, newValue));
644 Object newValue = new Object();
653 assertNull(segment.replace(key, hash, newValue));
661 assertSame(oldValue, segment.replace(key, hash, newValue));
    [all...]
  /dalvik/vm/interp/
Interp.cpp     [all...]
Jit.cpp 623 JitEntryInfoUnion newValue;
631 newValue = oldValue;
632 newValue.info.chain = idx;
634 newValue.infoWord,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.cpp 199 void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
222 newValue.isNull() ? v8::Handle<v8::Value>(v8::Null()) : v8::Handle<v8::Value>(v8String(newValue, isolate))
  /external/chromium_org/third_party/WebKit/Source/core/html/
BaseMultipleFieldsDateAndTimeInputType.cpp 184 String newValue = sanitizeValue(dateTimeEditElement()->value());
185 // Even if oldValue is null and newValue is "", we should assume they are same.
186 if ((oldValue.isEmpty() && newValue.isEmpty()) || oldValue == newValue)
189 input->setValueInternal(newValue, DispatchNoEvent);
HTMLInputElement.cpp 921 void HTMLInputElement::setIndeterminate(bool newValue)
923 if (indeterminate() == newValue)
926 m_isIndeterminate = newValue;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 243 public void clear(ValueReference<K, V> newValue) {}
282 public void clear(ValueReference<K, V> newValue) {}
344 public void clear(ValueReference<K, V> newValue) {
347 setValueReference(newValue);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpURLConnectionImpl.java 506 @Override public final void setRequestProperty(String field, String newValue) {
513 if (newValue == null) {
524 setTransports(newValue, false /* append */);
526 rawRequestHeaders.set(field, newValue);
  /frameworks/base/core/java/android/speech/tts/
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);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SettingsActivity.java 91 public boolean onPreferenceChange(Preference preference, Object newValue) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
EditTextRule.java 76 @Nullable Boolean newValue) {
TableLayoutRule.java 85 @Nullable Boolean newValue) {
115 final @Nullable Boolean newValue) {
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 657 void notifyNewValue(@Nullable V newValue);
717 public void notifyNewValue(Object newValue) {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 148 v8::Handle<v8::Value> JavaScriptCallFrame::setVariableValue(int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue)
155 newValue
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
MapMaker.java 91 public boolean replace(K key, V oldValue, V newValue) {
93 put(key, newValue);
  /external/llvm/include/llvm/Support/
Endian.h 80 void operator=(value_type newValue) {
82 (void*)Value.buffer, newValue);
  /packages/apps/Settings/src/com/android/settings/
VoiceInputOutputSettings.java 243 public boolean onPreferenceChange(Preference preference, Object newValue) {
245 String setting = (String) newValue;
  /external/chromium_org/chrome/renderer/resources/extensions/
ad_view.js 346 var newValue = this.browserPluginNode_.getAttribute(mutation.attributeName);
347 if (newValue != oldValue) {
348 this.adviewNode_.setAttribute(mutation.attributeName, newValue);
357 var newValue = url;
360 if (newValue === oldValue)
422 var newValue = this.adviewNode_.getAttribute('src');
425 this.browserPluginNode_['src'] = newValue;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 857 inline void Element::setAttributeInternal(size_t index, const QualifiedName& name, const AtomicString& newValue, SynchronizationOfLazyAttribute inSynchronizationOfLazyAttribute)
859 if (newValue.isNull()) {
866 addAttributeInternal(name, newValue, inSynchronizationOfLazyAttribute);
871 willModifyAttribute(name, attributeItem(index)->value(), newValue);
873 if (newValue != attributeItem(index)->value()) {
878 attrNode->setValue(newValue);
880 ensureUniqueElementData()->attributeItem(index)->setValue(newValue);
884 didModifyAttribute(name, newValue);
904 void Element::attributeChanged(const QualifiedName& name, const AtomicString& newValue, AttributeModificationReason reason)
907 if (shouldInvalidateDistributionWhenAttributeChanged(parentElementShadow, name, newValue))
    [all...]
  /external/srec/srec/EventLog/src/
EventLogImpl.c 98 ESR_ReturnCode propertyChanged(ESR_SessionTypeListener* self, const LCHAR* name, const void* oldValue, const void* newValue, VariableTypes variableType, void* data)
110 CHKLOG(rc, SR_EventLogTokenInt(eventLog, name, *((int*) newValue)));
113 CHKLOG(rc, SR_EventLogTokenUint16_t(eventLog, name, *((asr_uint16_t*) newValue)));
116 CHKLOG(rc, SR_EventLogTokenSize_t(eventLog, name, *((size_t*) newValue)));
119 CHKLOG(rc, SR_EventLogTokenBool(eventLog, name, *((ESR_BOOL*) newValue)));
122 CHKLOG(rc, SR_EventLogTokenFloat(eventLog, name, *((float*) newValue)));
125 CHKLOG(rc, SR_EventLogToken(eventLog, name, (LCHAR*) newValue));

Completed in 2622 milliseconds

1 2 3 4 5 6 7 8 91011>>