/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
NumberFormatICU.java | 176 public void setGroupingUsed(boolean newValue) { 177 fIcuNfmt.setGroupingUsed(newValue); 181 public void setMaximumFractionDigits(int newValue) { 182 fIcuNfmt.setMaximumFractionDigits(newValue); 186 public void setMaximumIntegerDigits(int newValue) { 187 fIcuNfmt.setMaximumIntegerDigits(newValue); 191 public void setMinimumFractionDigits(int newValue) { 192 fIcuNfmt.setMinimumFractionDigits(newValue); 196 public void setMinimumIntegerDigits(int newValue) { 197 fIcuNfmt.setMinimumIntegerDigits(newValue); [all...] |
/packages/apps/Settings/src/com/android/settings/notification/ |
ZenModePrioritySettings.java | 64 public boolean onPreferenceChange(Preference preference, Object newValue) { 66 final boolean val = (Boolean) newValue; 79 public boolean onPreferenceChange(Preference preference, Object newValue) { 81 final boolean val = (Boolean) newValue; 95 public boolean onPreferenceChange(Preference preference, Object newValue) { 97 final int val = Integer.parseInt((String) newValue); 116 public boolean onPreferenceChange(Preference preference, Object newValue) { 118 final int val = Integer.parseInt((String) newValue); 137 public boolean onPreferenceChange(Preference preference, Object newValue) { 139 final boolean val = (Boolean) newValue; [all...] |
/frameworks/base/services/core/java/com/android/server/vr/ |
SettingsObserver.java | 60 * @param newValue the new value of the setting. 63 void onSettingRestored(String prevValue, String newValue, int userId); 77 String newValue = intent.getStringExtra(Intent.EXTRA_SETTING_NEW_VALUE); 78 sendSettingRestored(prevValue, newValue, getSendingUserId()); 138 private void sendSettingRestored(final String prevValue, final String newValue, final int userId) { 140 l.onSettingRestored(prevValue, newValue, userId);
|
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/ |
DragAndDropActivity.java | 47 public void onChange(boolean newValue) { 48 mDragUpEnabled = newValue; 58 public void onChange(boolean newValue) { 59 mDragDownEnabled = newValue; 69 public void onChange(boolean newValue) { 70 mLongPressDragEnabled = newValue;
|
SwipeToDismissActivity.java | 48 public void onChange(boolean newValue) { 49 mSwipeStartEnabled = newValue; 59 public void onChange(boolean newValue) { 60 mSwipeEndEnabled = newValue; 70 public void onChange(boolean newValue) { 71 mPointerSwipeEnabled = newValue; 86 public void onChange(boolean newValue) { 87 mCustomSwipeEnabled = newValue;
|
/libcore/ojluni/src/main/java/java/util/prefs/ |
PreferenceChangeEvent.java | 59 private String newValue; 66 * @param newValue The new value of the preference, or <tt>null</tt> 70 String newValue) { 73 this.newValue = newValue; 101 return newValue;
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
SetAttributeNS.java | 93 qualifiedName, "newValue"); 115 qualifiedName, "newValue"); 154 // "newValue"); 175 "newprefix:zone", "newValue"); 180 assertEquals("attrValue", "newValue", resultAttr); 203 qualifiedName, "<newValue>"); 206 assertEquals("throw_Equals", "<newValue>", resultAttr); 222 qualifiedName, "newValue"); 243 qualifiedName, "newValue"); 267 qualifiedName, "newValue"); [all...] |
/art/runtime/native/ |
sun_misc_Unsafe.cc | 34 jint expectedValue, jint newValue) { 39 expectedValue, newValue); 44 jlong expectedValue, jlong newValue) { 49 expectedValue, newValue); 58 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue); 72 expectedValue, newValue); 88 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { 92 obj->SetField32<false>(MemberOffset(offset), newValue); 96 jint newValue) { 100 obj->SetField32Volatile<false>(MemberOffset(offset), newValue); [all...] |
/external/clang/test/Analysis/ |
objc-properties.m | 53 - (void) setY:(MyClass*) NewValue { 54 _Y = NewValue; // no-warning 57 - (void) setZ:(MyClass*) NewValue { 58 _Z = NewValue; // no-warning
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicReference.java | 64 * @param newValue the new value 66 public final void set(V newValue) { 67 value = newValue; 73 * @param newValue the new value 76 public final void lazySet(V newValue) { 77 U.putOrderedObject(this, VALUE, newValue); 111 * @param newValue the new value 115 public final V getAndSet(V newValue) { 116 return (V)U.getAndSetObject(this, VALUE, newValue);
|
/libcore/ojluni/src/main/java/sun/misc/ |
Unsafe.java | 123 * @param newValue new value to store in the field if the contents are 129 int expectedValue, int newValue); 138 * @param newValue new value to store in the field if the contents are 144 long expectedValue, long newValue); 153 * @param newValue new value to store in the field if the contents are 159 Object expectedValue, Object newValue); 177 * @param newValue the value to store 179 public native void putIntVolatile(Object obj, long offset, int newValue); 197 * @param newValue the value to store 199 public native void putLongVolatile(Object obj, long offset, long newValue); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
PropertyCallback.java | 30 * particular property to the new valueId or newValue passed from the {@link IMenuCallback} 60 final @Nullable String valueId, final @Nullable Boolean newValue) { 75 assert newValue != null; 76 targetNode.setAttribute(mUri, mAttribute, Boolean.toString(newValue));
|
/art/test/141-class-unload/src-ex/ |
IntHolder.java | 22 public static void setValue(int newValue) { 23 value = newValue;
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AtomicLongMapTest.java | 274 long newValue = random.nextInt(MAX_ADDEND); 277 long result = map.put(key, newValue); 279 assertEquals(newValue, after); 281 newValue += newValue; 332 long newValue = random.nextInt(MAX_ADDEND); 335 long result = map.putIfAbsent(key, newValue); 338 assertEquals(before == 0 ? newValue : before, after); 342 result = map.putIfAbsent(key, newValue); 346 assertEquals(newValue, after) [all...] |
/libcore/ojluni/src/main/java/java/beans/ |
PropertyChangeSupport.java | 63 * public void setValue(String newValue) { 65 * this.value = newValue; 66 * this.pcs.firePropertyChange("value", oldValue, newValue); 259 * @param newValue the new value of the property 261 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { 262 if (oldValue == null || newValue == null || !oldValue.equals(newValue)) { 263 firePropertyChange(new PropertyChangeEvent(this.source, propertyName, oldValue, newValue)); 279 * @param newValue the new value of the property 281 public void firePropertyChange(String propertyName, int oldValue, int newValue) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
GLBooleanProperty.java | 36 public void setValue(Boolean newValue) { 37 mCurrentValue = newValue;
|
GLEnumProperty.java | 37 public void setValue(GLEnum newValue) { 38 mCurrentValue = newValue;
|
GLFloatProperty.java | 35 public void setValue(Float newValue) { 36 mCurrentValue = newValue;
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodevalue01.java | 61 String newValue; 64 newValue = newNode.getNodeValue(); 65 assertNull("initiallyNull", newValue); 67 newValue = newNode.getNodeValue(); 68 assertNull("nullAfterAttemptedChange", newValue);
|
hc_nodevalue02.java | 61 String newValue; 64 newValue = newNode.getNodeValue(); 65 assertEquals("initial", "This is a new Comment node", newValue); 67 newValue = newNode.getNodeValue(); 68 assertEquals("afterChange", "This should have an effect", newValue);
|
hc_nodevalue03.java | 61 String newValue; 78 newValue = newNode.getNodeValue(); 79 assertNull("initiallyNull", newValue); 81 newValue = newNode.getNodeValue(); 82 assertNull("nullAfterAttemptedChange", newValue);
|
hc_nodevalue04.java | 61 String newValue; 70 newValue = newNode.getNodeValue(); 71 assertNull("initiallyNull", newValue); 73 newValue = newNode.getNodeValue(); 74 assertNull("nullAfterAttemptedChange", newValue);
|
hc_nodevalue05.java | 61 String newValue; 64 newValue = newNode.getNodeValue(); 65 assertNull("initiallyNull", newValue); 67 newValue = newNode.getNodeValue(); 68 assertNull("nullAfterAttemptedChange", newValue);
|
hc_nodevalue06.java | 60 String newValue; 62 newValue = newNode.getNodeValue(); 63 assertNull("initiallyNull", newValue); 65 newValue = newNode.getNodeValue(); 66 assertNull("nullAfterAttemptedChange", newValue);
|
hc_nodevalue07.java | 64 String newValue; 78 newValue = newNode.getNodeValue(); 79 assertNull("initiallyNull", newValue); 81 newValue = newNode.getNodeValue(); 82 assertNull("nullAfterAttemptedChange", newValue);
|