HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 251 - 275 of 520) sorted by null

<<11121314151617181920>>

  /external/icu4c/i18n/
decimfmt.cpp     [all...]
  /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/guava/guava-tests/test/com/google/common/collect/
MutableClassToInstanceMapTest.java 113 Integer newValue = map.getInstance(Integer.class);
114 assertEquals(7, (int) newValue);
  /external/llvm/include/llvm/Support/
Endian.h 80 void operator=(value_type newValue) {
82 (void*)Value.buffer, newValue);
  /external/webkit/Source/WebCore/html/
BaseDateAndTimeInputType.cpp 68 void BaseDateAndTimeInputType::setValueAsNumber(double newValue, ExceptionCode&) const
70 element()->setValue(serialize(newValue));
HTMLTextAreaElement.cpp 386 void HTMLTextAreaElement::setMaxLength(int newValue, ExceptionCode& ec)
388 if (newValue < 0)
391 setAttribute(maxlengthAttr, String::number(newValue));
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectStreamFieldTest.java 55 public void setOffset(int newValue) {
56 super.setOffset(newValue);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 141 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue");
143 assertEquals("throw_Equals", "NewValue", attrValue);
  /packages/apps/Settings/src/com/android/settings/
LocationSettings.java 202 public boolean onPreferenceChange(Preference pref, Object newValue) {
204 onToggleLocationAccess((Boolean) newValue);
  /packages/apps/Settings/src/com/android/settings/accounts/
SyncSettings.java 59 public boolean onPreferenceChange(Preference preference, Object newValue) {
63 ContentResolver.setMasterSyncAutomatically((Boolean) newValue);
  /system/core/include/cutils/
atomic.h 104 int android_atomic_acquire_cas(int32_t oldvalue, int32_t newvalue,
106 int android_atomic_release_cas(int32_t oldvalue, int32_t newvalue,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentResultsView.java 292 Object newValue = event.getNewValue();
296 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS : "true".equals(newValue);
303 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS : "true".equals(newValue);
310 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_NIGHTLY_BUILDS : "true".equals(newValue);
  /external/icu4c/i18n/unicode/
decimfmt.h     [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));
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 657 void notifyNewValue(@Nullable V newValue);
717 public void notifyNewValue(Object newValue) {}
    [all...]
  /external/webkit/Source/WebCore/dom/
InputElement.cpp 243 String newValue = inputElement->sanitizeValue(oldValue);
244 if (newValue != oldValue)
245 inputElement->setValue(newValue);
  /external/webkit/Source/WebKit/chromium/tests/
IDBBindingUtilitiesTest.cpp 87 RefPtr<SerializedScriptValue> newValue = injectKey(key, value, keyPath);
88 ASSERT_TRUE(newValue);
89 RefPtr<IDBKey> extractedKey = checkKeyFromValueAndKeyPathInternal(newValue.get(), keyPath);
  /libcore/luni/src/main/java/java/io/
ObjectStreamField.java 275 * @param newValue
278 protected void setOffset(int newValue) {
279 this.offset = newValue;
  /packages/apps/Email/src/com/android/email/activity/setup/
MailboxSettings.java 290 public boolean onPreferenceChange(Preference preference, Object newValue) {
292 if (Objects.equal(lp.getValue(), newValue)) {
301 lp.setValue((String) newValue);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 332 Object newValue = update.get(key);
333 String newString = newValue == null ? null : newValue.toString();
  /prebuilts/devtools/tools/lib/
asm-analysis-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-analysis-4.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/4.0/
asm-analysis-4.0.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
IdentityHashMapTest.java 428 String newValue = "newvalue";
429 entry.setValue(newValue);
430 assertSame(newValue, ihm.get(key));
  /external/chromium-trace/trace-viewer/src/
base.js 266 * @param {*} newValue The new value for the property.
269 function dispatchPropertyChange(target, propertyName, newValue, oldValue) {
272 e.newValue = newValue;

Completed in 4312 milliseconds

<<11121314151617181920>>