HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 76 - 100 of 236) sorted by null

1 2 34 5 6 7 8 910

  /external/srec/shared/include/
ESR_SessionTypeListener.h 49 * @param newValue New property value
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
  /external/webkit/WebKit/chromium/src/
WebStorageEventDispatcherImpl.cpp 58 const WebString& newValue, const WebString& origin,
67 m_eventDispatcher->dispatchStorageEvent(key, oldValue, newValue, securityOrigin.get(), url, storageType);
StorageEventDispatcherImpl.cpp 54 const String& newValue, SecurityOrigin* securityOrigin,
76 frames[i]->document()->dispatchWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue,
  /packages/apps/AlarmClock/src/com/android/alarmclock/
SettingsActivity.java 96 public boolean onPreferenceChange(Preference pref, Object newValue) {
98 final int idx = listPref.findIndexOfValue((String) newValue);
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 81 public boolean onPreferenceChange(Preference pref, Object newValue) {
83 final int idx = listPref.findIndexOfValue((String) newValue);
SetAlarm.java 83 Object newValue) {
84 String val = (String) newValue;
90 newValue);
99 Object newValue) {
105 return SetAlarm.this.onPreferenceChange(p, newValue);
188 public boolean onPreferenceChange(final Preference p, Object newValue) {
  /packages/apps/Settings/src/com/android/settings/vpn/
L2tpEditor.java 66 Preference pref, Object newValue) {
67 boolean enabled = (Boolean) newValue;
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 101 * @param newValue the new value
103 public abstract void set(T obj, long newValue);
119 * @param newValue the new value
122 public long getAndSet(T obj, long newValue) {
125 if (compareAndSet(obj, current, newValue))
287 public void set(T obj, long newValue) {
289 unsafe.putLongVolatile(obj, offset, newValue);
378 public void set(T obj, long newValue) {
381 unsafe.putLong(obj, offset, newValue);
385 public void lazySet(T obj, long newValue) {
    [all...]
AtomicIntegerFieldUpdater.java 98 * @param newValue the new value
100 public abstract void set(T obj, int newValue);
116 * @param newValue the new value
119 public int getAndSet(T obj, int newValue) {
122 if (compareAndSet(obj, current, newValue))
288 public void set(T obj, int newValue) {
290 unsafe.putIntVolatile(obj, offset, newValue);
  /dalvik/libcore/luni/src/main/java/java/net/
URLConnection.java 453 * @param newValue
461 public void addRequestProperty(String field, String newValue) {
776 * @param newValue
783 public void setAllowUserInteraction(boolean newValue) {
787 this.allowUserInteraction = newValue;
847 * @param newValue
852 public void setDefaultUseCaches(boolean newValue) {
859 defaultUseCaches = newValue;
866 * @param newValue
873 public void setDoInput(boolean newValue) {
    [all...]
  /dalvik/libcore/prefs/src/test/resources/prefs/java/util/prefs/
userprefs-badtype.xml 37 <entry key="prefskey" value="newvalue" />
  /external/icu4c/i18n/
winnmfmt.h 108 * @param newValue the new value to be set.
112 virtual void setMaximumFractionDigits(int32_t newValue);
120 * @param newValue the new value to be set.
124 virtual void setMinimumFractionDigits(int32_t newValue);
  /external/webkit/WebCore/bindings/objc/
DOMHTML.mm 127 WebCore::String newValue = inputElement->value();
128 newValue.replace(targetRange.location, targetRange.length, replacementString);
129 inputElement->setValue(newValue);
130 inputElement->setSelectionRange(index, newValue.length());
  /external/webkit/WebCore/bindings/v8/
V8Utilities.cpp 81 v8::Local<v8::Value> newValue,
92 if (!newValue->IsNull() && !newValue->IsUndefined())
93 createHiddenDependency(object, newValue, cacheIndex);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettings.java 144 public boolean onPreferenceChange(Preference preference, Object newValue) {
145 final String summary = newValue.toString();
156 public boolean onPreferenceChange(Preference preference, Object newValue) {
157 final String summary = newValue.toString();
169 public boolean onPreferenceChange(Preference preference, Object newValue) {
170 String summary = newValue.toString();
193 public boolean onPreferenceChange(Preference preference, Object newValue) {
194 final String summary = newValue.toString();
213 public boolean onPreferenceChange(Preference preference, Object newValue) {
214 final String summary = newValue.toString()
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
AdvancedSettings.java 167 public boolean onPreferenceChange(Preference preference, Object newValue) {
173 int numChannels = Integer.parseInt((String) newValue);
188 Settings.System.WIFI_SLEEP_POLICY, Integer.parseInt(((String) newValue)));
196 boolean value = ((Boolean) newValue).booleanValue();
205 String value = (String) newValue;
  /cts/tests/tests/util/src/android/util/cts/
SparseIntArrayTest.java 135 int newValue = 23;
138 sparseIntArray.put(existKey, newValue);
139 assertEquals(newValue, sparseIntArray.get(existKey));
257 int newValue = 23;
260 sparseIntArray.put(existKey, newValue);
261 assertEquals(newValue, sparseIntArray.get(existKey));
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
setAttributeNS04.java 90 ((Element) /*Node */testAddr).setAttributeNS("http://www.nist.gov", "newprefix:zone", "newValue");
93 assertEquals("attrValue", "newValue", resultAttr);
setAttributeNS09.java 85 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
88 assertEquals("attrValue", "newValue", resultAttr);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
FtpURLConnection.java 453 * @param newValue *
463 public void setDoInput(boolean newValue) {
467 this.doInput = newValue;
468 this.doOutput = !newValue;
476 * @param newValue
486 public void setDoOutput(boolean newValue) {
490 this.doOutput = newValue;
491 this.doInput = !newValue;
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
UpdateFunctionalityTest.java 127 String newValue = "newValue";
129 + " SET field1='" + newValue + "'";
138 assertEquals("The field field1 was not updated", newValue,
166 String newValue = "newValue";
168 + " SET field1='" + newValue + "' WHERE (id > 2) and (id < 10)";
180 assertEquals("The field field1 was not updated", newValue,
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 462 String newValue = null;
465 newValue = System.getProperty(newKey);
471 if (newValue == null)
472 newValue = fixupPropertyString(value, false);
474 newValue = fixupPropertyString(newValue, false);
476 if (key != newKey || value != newValue)
479 props.put(newKey, newValue);
  /external/webkit/WebCore/inspector/front-end/
Settings.js 88 _set: function(propertyName, newValue)
90 this._store[propertyName] = newValue;
  /external/webkit/WebCore/platform/graphics/mac/
ColorMac.mm 43 void setUsesTestModeFocusRingColor(bool newValue)
45 useOldAquaFocusRingColor = newValue;
  /packages/apps/Settings/src/com/android/settings/
AirplaneModeEnabler.java 116 public boolean onPreferenceChange(Preference preference, Object newValue) {
121 setAirplaneModeOn((Boolean) newValue);

Completed in 2563 milliseconds

1 2 34 5 6 7 8 910