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

1 2 3 4 5 6 7 891011>>

  /packages/apps/Settings/src/com/android/settings/display/
TapToWakePreferenceController.java 52 public boolean onPreferenceChange(Preference preference, Object newValue) {
53 boolean value = (Boolean) newValue;
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
AutoRestrictionPreferenceController.java 58 public boolean onPreferenceChange(Preference preference, Object newValue) {
59 final boolean smartBatteryOn = (Boolean) newValue;
SmartBatteryPreferenceController.java 66 public boolean onPreferenceChange(Preference preference, Object newValue) {
67 final boolean smartBatteryOn = (Boolean) newValue;
  /packages/apps/Settings/src/com/android/settings/nfc/
NfcForegroundPreference.java 59 public boolean onPreferenceChange(Preference preference, Object newValue) {
60 String newValueString = (String) newValue;
  /packages/apps/Settings/src/com/android/settings/notification/
DndPreferenceController.java 62 public boolean onPreferenceChange(Preference preference, Object newValue) {
64 final boolean bypassZenMode = (Boolean) newValue;
VibrationPreferenceController.java 65 public boolean onPreferenceChange(Preference preference, Object newValue) {
67 final boolean vibrate = (Boolean) newValue;
ZenModeAlarmsPreferenceController.java 70 public boolean onPreferenceChange(Preference preference, Object newValue) {
71 final boolean allowAlarms = (Boolean) newValue;
ZenModeEventsPreferenceController.java 68 public boolean onPreferenceChange(Preference preference, Object newValue) {
69 final boolean allowEvents = (Boolean) newValue;
ZenModeMediaPreferenceController.java 71 public boolean onPreferenceChange(Preference preference, Object newValue) {
72 final boolean allowMedia = (Boolean) newValue;
ZenModeRemindersPreferenceController.java 67 public boolean onPreferenceChange(Preference preference, Object newValue) {
68 final boolean allowReminders = (Boolean) newValue;
ZenModeSystemPreferenceController.java 70 public boolean onPreferenceChange(Preference preference, Object newValue) {
71 final boolean allowSystem = (Boolean) newValue;
  /packages/apps/Settings/src/com/android/settings/security/screenlock/
PatternVisiblePreferenceController.java 66 public boolean onPreferenceChange(Preference preference, Object newValue) {
67 mLockPatternUtils.setVisiblePatternEnabled((Boolean) newValue, mUserId);
  /packages/apps/Settings/src/com/android/settings/widget/
MasterSwitchController.java 66 public boolean onPreferenceChange(Preference preference, Object newValue) {
68 return mListener.onSwitchToggled((Boolean) newValue);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.observers/
get.pass.cpp 28 int* p = newValue<VT>(1);
38 const int* p = newValue<VT>(1);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLIntegerProperty.java 41 public void setValue(Integer newValue) {
42 mCurrentValue = newValue;
GLLongProperty.java 41 public void setValue(Long newValue) {
42 mCurrentValue = newValue;
GLObjectProperty.java 41 public void setValue(Object newValue) {
42 mCurrentValue = newValue;
  /cts/tests/tests/util/src/android/util/cts/
LongSparseArrayTest.java 66 Integer newValue = 100;
69 sparseArray.put(existKey, newValue);
70 assertEquals(newValue, sparseArray.get(existKey));
132 Integer newValue = 100;
135 sparseArray.put(existKey, newValue);
136 assertEquals(newValue, sparseArray.get(existKey));
SparseArrayTest.java 63 Integer newValue = 100;
66 sparseArray.put(existKey, newValue);
67 assertEquals(newValue, sparseArray.get(existKey));
129 Integer newValue = 100;
132 sparseArray.put(existKey, newValue);
133 assertEquals(newValue, sparseArray.get(existKey));
SparseBooleanArrayTest.java 65 boolean newValue = false;
68 sparseBooleanArray.put(existKey, newValue);
69 assertEquals(newValue, sparseBooleanArray.get(existKey));
122 boolean newValue = false;
125 sparseBooleanArray.put(existKey, newValue);
126 assertEquals(newValue, sparseBooleanArray.get(existKey));
SparseIntArrayTest.java 58 int newValue = 23;
61 sparseIntArray.put(existKey, newValue);
62 assertEquals(newValue, sparseIntArray.get(existKey));
107 int newValue = 23;
110 sparseIntArray.put(existKey, newValue);
111 assertEquals(newValue, sparseIntArray.get(existKey));
SparseLongArrayTest.java 64 long newValue = 100;
67 sparseArray.put(existKey, newValue);
68 assertEquals(newValue, sparseArray.get(existKey));
126 long newValue = 100;
129 sparseArray.put(existKey, newValue);
130 assertEquals(newValue, sparseArray.get(existKey));
  /dalvik/dx/tests/135-invoke-custom/src/invokecustom/
InvokeCustom.java 109 int newValue = (int) getter.invokeExact();
110 System.out.print("checkStaticFieldTest9: old " + oldValue + " new " + newValue +
112 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR");
122 float newValue = (float) getter.invokeExact(this);
123 System.out.print("checkFieldTest9: old " + oldValue + " new " + newValue +
125 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR");
  /dalvik/dx/tests/137-dexmerger-dex38/src/invokecustom/
InvokeCustom.java 105 int newValue = (int) getter.invokeExact();
106 System.out.print("checkStaticFieldTest9: old " + oldValue + " new " + newValue +
108 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR");
118 float newValue = (float) getter.invokeExact(this);
119 System.out.print("checkFieldTest9: old " + oldValue + " new " + newValue +
121 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR");
  /external/clang/test/Analysis/inlining/
DynDispatchBifurcate.m 32 - (void)setValue2:(int)newValue {
33 value2 = newValue;
39 - (void)setValue3:(int)newValue {
40 value3 = newValue;
102 - (void)setValue:(int)newValue {
103 value = newValue;

Completed in 975 milliseconds

1 2 3 4 5 6 7 891011>>