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

<<11121314151617181920>>

  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 477 const int32_t newValue = enabled ? eventBit : 0;
479 if (newValue != oldValue) {
484 events = (events & ~eventBit) | 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...]
  /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...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
PreferencesTest.java 154 assertEquals("newvalue", prefs.get("prefskey", null));
  /external/chromium/chrome/browser/resources/options/
inline_editable_list.js 353 if (e.newValue)
  /external/webkit/Source/WebCore/bindings/objc/
PublicDOMInterfaces.h     [all...]
  /frameworks/base/services/input/
InputReader.h     [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/DeskClock/src/com/android/deskclock/
SetAlarm.java 213 public boolean onPreferenceChange(final Preference p, Object newValue) {
  /external/webkit/Source/WebCore/inspector/front-end/
CSSStyleModel.js 547 setValue: function(newValue, userCallback)
549 var text = this.name + ": " + newValue + (this.priority ? " !" + this.priority : "") + ";"
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 139 - (void)setHoverFeedbackSuspended:(BOOL)newValue;
494 - (void)setValidationMessageTimerMagnification:(int)newValue;
  /external/webkit/Source/WebKit/win/
DOMEventsClasses.h 685 virtual HRESULT STDMETHODCALLTYPE newValue(
700 /* [in] */ BSTR newValue,
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 178 String newValue(line, lineLength);
180 headerFields.set(lastHeaderKey, currentValue + newValue);
  /external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp 806 gfloat newValue = g_ascii_strtod(valueAsString.get(), 0);
807 g_object_set(G_OBJECT(settings), propertyName, newValue, NULL);
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.mm 792 printf(" newValue: %s\n", [[(DOMMutationEvent*)event newValue] UTF8String]);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
Fences.java 144 * Object newValue = ...;
145 * c.data = Fences.orderWrites(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/users/
UserSettings.java 798 public boolean onPreferenceChange(Preference preference, Object newValue) {
800 String value = (String) newValue;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java     [all...]
  /external/qemu/telephony/
android_modem.c 410 char *newvalue; local
415 newvalue = strdup(strval);
416 if (!newvalue) {
417 newvalue = "";
419 aconfig_set(modem->nvram_config, nvname, newvalue);
    [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java     [all...]
  /frameworks/base/core/java/android/preference/
Preference.java 147 * @param newValue The new value of the Preference.
150 boolean onPreferenceChange(Preference preference, Object newValue);
890 * @param newValue The new value of this Preference.
894 protected boolean callChangeListener(Object newValue) {
895 return mOnChangeListener == null ? true : mOnChangeListener.onPreferenceChange(this, newValue);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 554 final boolean replace(K key, int hash, V oldValue, V newValue) {
565 e.value = newValue;
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractHashedMap.java 441 * @param newValue the new value to store
443 protected void updateEntry(HashEntry<K, V> entry, V newValue) {
444 entry.setValue(newValue);
    [all...]
  /frameworks/base/docs/html/guide/topics/admin/
device-admin.jd 470 public boolean onPreferenceChange(Preference preference, Object newValue) {
471 if (super.onPreferenceChange(preference, newValue)) {
474 boolean value = (Boolean) newValue;
    [all...]

Completed in 2737 milliseconds

<<11121314151617181920>>