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

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/users/
AppRestrictionsFragment.java 803 public boolean onPreferenceChange(Preference preference, Object newValue)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 614 * @param newValue the new value reference which will replace this one; this is only used during
617 void clear(@Nullable ValueReference<K, V> newValue);
658 public void clear(ValueReference<Object, Object> newValue) {}
    [all...]
TreeMultiset.java 156 public boolean compareAndSet(T expected, T newValue) {
158 value = newValue;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 360 v8::Handle<v8::Value> newValue = args[3];
364 v8SetReturnValue(args, debugServer.setFunctionVariableValue(functionValue, scopeIndex, variableName, newValue));
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 810 private void notifyPreferenceChange(String key, String newValue) {
811 PreferenceChangeEvent pce = new PreferenceChangeEvent(this, key, newValue);
  /packages/apps/Settings/src/com/android/settings/accessibility/
AccessibilitySettings.java 239 public boolean onPreferenceChange(Preference preference, Object newValue) {
241 String stringValue = (String) newValue;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 390 int newValue = (oldValue == Calendar.AM) ? Calendar.PM : Calendar.AM;
391 cal.set(Calendar.AM_PM, newValue);
392 newValue = cal.get(Calendar.AM_PM);
393 assertTrue(newValue != oldValue);
    [all...]
ControlTest.java 592 String newValue = "property=changedValue";
594 writer.write(newValue);
598 assertEquals(newValue, scanner.nextLine());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.h 164 void willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicString& newValue);
InspectorInstrumentation.idl 77 void willModifyDOMAttr(Document*, Element*, const AtomicString& oldValue, const AtomicString& newValue);
373 void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin);
  /external/icu4c/i18n/unicode/
ucal.h 952 * @param newValue The new value of attr.
959 int32_t newValue);
    [all...]
  /frameworks/base/services/input/
InputReader.h     [all...]
InputReader.cpp     [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
CalendarTest.java 390 int newValue = (oldValue == Calendar.AM) ? Calendar.PM : Calendar.AM;
391 cal.set(Calendar.AM_PM, newValue);
392 newValue = cal.get(Calendar.AM_PM);
393 assertTrue(newValue != oldValue);
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPermissionActivity.java 252 public boolean onPreferenceChange(Preference preference, Object newValue) {
  /frameworks/base/core/java/android/preference/
Preference.java 148 * @param newValue The new value of the Preference.
151 boolean onPreferenceChange(Preference preference, Object newValue);
892 * @param newValue The new value of this Preference.
896 protected boolean callChangeListener(Object newValue) {
897 return mOnChangeListener == null ? true : mOnChangeListener.onPreferenceChange(this, newValue);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseLayoutRule.java 122 final @Nullable Boolean newValue) {
205 final @Nullable Boolean newValue) {
221 if (newValue) {
    [all...]
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view.js 365 var newValue = this.browserPluginNode_.getAttribute(mutation.attributeName);
366 if (newValue != oldValue) {
367 this.webviewNode_.setAttribute(mutation.attributeName, newValue);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 338 int newValue = (1 << AudioManager.STREAM_RING)
343 + String.valueOf(newValue) + "')");
451 int newValue = (1 << AudioManager.STREAM_RING)
457 + String.valueOf(newValue) + "')");
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkPerlinNoiseShader.cpp 32 // newValue is the current noise dimension (either width or height)
33 inline int checkNoise(int noiseValue, int limitValue, int newValue) {
38 noiseValue -= newValue;
41 noiseValue -= newValue - 1;
    [all...]

Completed in 5078 milliseconds

<<11121314151617181920>>