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

1 2 3 4 5 6 7 891011>>

  /packages/apps/Gallery2/src/com/android/camera/ui/
CountdownTimerPopup.java 82 public void onValueChange(NumberPicker picker, int oldValue, int newValue) {
83 setTimeSelectionEnabled(newValue != 0);
  /packages/apps/Settings/src/com/android/settings/
AirplaneModeEnabler.java 122 public boolean onPreferenceChange(Preference preference, Object newValue) {
127 setAirplaneModeOn((Boolean) newValue);
ApplicationSettings.java 70 public boolean onPreferenceChange(Preference preference, Object newValue) {
71 String value = (String) newValue;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ConvertToDpFix.java 74 String newValue = String.format(VALUE_N_DP, dp);
75 attribute.setNodeValue(newValue);
  /external/apache-harmony/prefs/src/test/resources/prefs/java/util/prefs/
userprefs-badencoding.xml 37 <entry key="prefskey" value="newvalue" />
userprefs-higherversion.xml 37 <entry key="prefskey" value="newvalue" />
  /external/icu4c/i18n/
winnmfmt.cpp 226 void Win32NumberFormat::setMaximumFractionDigits(int32_t newValue)
229 NumberFormat::setMaximumFractionDigits(newValue);
232 void Win32NumberFormat::setMinimumFractionDigits(int32_t newValue)
235 NumberFormat::setMinimumFractionDigits(newValue);
  /external/webkit/Source/WebCore/html/
NumberInputType.cpp 71 void NumberInputType::setValueAsNumber(double newValue, ExceptionCode& ec) const
73 if (newValue < -numeric_limits<float>::max()) {
77 if (newValue > numeric_limits<float>::max()) {
81 element()->setValue(serialize(newValue));
  /external/webkit/Source/WebCore/storage/
StorageEvent.idl 33 readonly attribute [ConvertNullStringTo=Null] DOMString newValue;
StorageEventDispatcher.h 43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
  /external/webkit/Source/WebKit/chromium/public/
WebDOMMutationEvent.h 51 WEBKIT_API WebString newValue() const;
WebStorageEventDispatcher.h 50 const WebString& newValue, const WebString& origin,
  /external/webkit/Source/WebKit/chromium/src/
StorageAreaProxy.h 55 void storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
StorageEventDispatcherImpl.h 50 const String& newValue, SecurityOrigin*,
WebStorageEventDispatcherImpl.h 47 const WebString& newValue, const WebString& origin,
StorageAreaProxy.cpp 112 void StorageAreaProxy::storageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame)
132 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
149 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
  /libcore/luni/src/test/resources/prefs/java/util/prefs/
userprefs-badencoding.xml 37 <entry key="prefskey" value="newvalue" />
userprefs-higherversion.xml 37 <entry key="prefskey" value="newvalue" />
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListSetTester.java 64 private void doTestSet(E newValue) {
68 initialValue, getList().set(index, newValue));
70 newValue, getList().get(index));
  /external/guava/guava-tests/test/com/google/common/cache/
AbstractCacheTest.java 54 Object newValue = new Object();
55 valueRef.set(newValue);
56 assertSame(newValue, cache.getIfPresent(new Object()));
  /frameworks/base/core/java/android/preference/
TwoStatePreference.java 61 boolean newValue = !isChecked();
65 if (!callChangeListener(newValue)) {
69 setChecked(newValue);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
BaseFragmentPagerAdapter.java 184 Fragment oldValue, Fragment newValue) {
186 if (evicted || (newValue != null && oldValue != newValue)) {
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentMap.java 93 * map.put(key, newValue);
102 * @param newValue value to be associated with the specified key
113 boolean replace(K key, V oldValue, V newValue);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
SetNamedItemNS.java 144 arg.setNodeValue("newValue");
151 assertEquals("throw_Equals", "newValue", value);
208 arg.setNodeValue("newValue");
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
LayoutView.java 66 boolean newValue = !mLayoutViewer.getOnBlack();
67 mLayoutViewer.setOnBlack(newValue);
68 if (newValue) {

Completed in 2874 milliseconds

1 2 3 4 5 6 7 891011>>