HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 76 - 100 of 892) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodevalue08.java 65 String newValue;
78 newValue = newNode.getNodeValue();
79 assertNull("initiallyNull", newValue);
81 newValue = newNode.getNodeValue();
82 assertNull("nullAfterAttemptedChange", newValue);
nodevalue01.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
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);
nodevalue03.java 61 String newValue;
65 newValue = newNode.getNodeValue();
66 assertNull("initiallyNull", newValue);
68 newValue = newNode.getNodeValue();
69 assertNull("nullAfterAttemptedChange", newValue);
nodevalue04.java 61 String newValue;
65 newValue = newNode.getNodeValue();
66 assertNull("initiallyNull", newValue);
68 newValue = newNode.getNodeValue();
69 assertNull("nullAfterAttemptedChange", newValue);
nodevalue05.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertNull("initiallyNull", newValue);
67 newValue = newNode.getNodeValue();
68 assertNull("nullAfterAttemptedChange", newValue);
nodevalue06.java 60 String newValue;
62 newValue = newNode.getNodeValue();
63 assertNull("initiallyNull", newValue);
65 newValue = newNode.getNodeValue();
66 assertNull("nullAfterAttemptedChange", newValue);
nodevalue07.java 61 String newValue;
71 newValue = newNode.getNodeValue();
72 assertNull("initiallyNull", newValue);
74 newValue = newNode.getNodeValue();
75 assertNull("nullAfterAttemptedChange", newValue);
nodevalue08.java 62 String newValue;
71 newValue = newNode.getNodeValue();
72 assertNull("initiallyNull", newValue);
74 newValue = newNode.getNodeValue();
75 assertNull("nullAfterAttemptedChange", newValue);
nodevalue09.java 61 String newValue;
64 newValue = newNode.getNodeValue();
65 assertEquals("initial", "DATA", newValue);
67 newValue = newNode.getNodeValue();
68 assertEquals("after", "This should have an effect", newValue);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
SpellCheckerPreference.java 100 public boolean callChangeListener(Object newValue) {
101 newValue = newValue != null ? mScis[Integer.parseInt((String) newValue)] : null;
102 return super.callChangeListener(newValue);
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 91 * @param newValue the new value
93 public final void set(double newValue) {
94 long next = doubleToRawLongBits(newValue);
101 * @param newValue the new value
103 public final void lazySet(double newValue) {
104 set(newValue);
106 // long next = doubleToRawLongBits(newValue);
113 * @param newValue the new value
116 public final double getAndSet(double newValue) {
117 long next = doubleToRawLongBits(newValue);
    [all...]
AtomicDoubleArray.java 98 * @param newValue the new value
100 public final void set(int i, double newValue) {
101 long next = doubleToRawLongBits(newValue);
109 * @param newValue the new value
111 public final void lazySet(int i, double newValue) {
112 set(i, newValue);
114 // long next = doubleToRawLongBits(newValue);
123 * @param newValue the new value
126 public final double getAndSet(int i, double newValue) {
127 long next = doubleToRawLongBits(newValue);
    [all...]
AtomicLongMap.java 126 long newValue = oldValue + delta;
127 if (atomic.compareAndSet(oldValue, newValue)) {
128 return newValue;
175 long newValue = oldValue + delta;
176 if (atomic.compareAndSet(oldValue, newValue)) {
185 * Associates {@code newValue} with {@code key} in this map, and returns the value previously
188 public long put(K key, long newValue) {
192 atomic = map.putIfAbsent(key, new AtomicLong(newValue));
203 if (map.replace(key, atomic, new AtomicLong(newValue))) {
210 if (atomic.compareAndSet(oldValue, newValue)) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogComponent.java 83 public void onTuningChanged(String key, String newValue) {
85 final boolean volumeDownToEnterSilent = newValue != null
86 ? Integer.parseInt(newValue) != 0
92 final boolean volumeUpToExitSilent = newValue != null
93 ? Integer.parseInt(newValue) != 0
99 final boolean doNotDisturbWhenSilent = newValue != null
100 ? Integer.parseInt(newValue) != 0
  /libcore/ojluni/src/main/java/java/beans/
PropertyChangeEvent.java 56 * @param newValue The new value of the property.
59 Object oldValue, Object newValue) {
62 this.newValue = newValue;
83 return newValue;
129 private Object newValue;
156 sb.append("; newValue=").append(getNewValue());
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicInteger.java 69 * @param newValue the new value
71 public final void set(int newValue) {
72 value = newValue;
78 * @param newValue the new value
81 public final void lazySet(int newValue) {
82 U.putOrderedInt(this, VALUE, newValue);
88 * @param newValue the new value
91 public final int getAndSet(int newValue) {
92 return U.getAndSetInt(this, VALUE, newValue);
  /external/llvm/include/llvm/Support/
Endian.h 181 void operator=(value_type newValue) {
183 (void*)Value.buffer, newValue);
186 packed_endian_specific_integral &operator+=(value_type newValue) {
187 *this = *this + newValue;
191 packed_endian_specific_integral &operator-=(value_type newValue) {
192 *this = *this - newValue;
196 packed_endian_specific_integral &operator|=(value_type newValue) {
197 *this = *this | newValue;
201 packed_endian_specific_integral &operator&=(value_type newValue) {
202 *this = *this & newValue;
    [all...]
  /frameworks/support/media-compat/kitkat/android/support/v4/media/session/
MediaSessionCompatApi19.java 94 public void onMetadataUpdate(int key, Object newValue) {
95 if (key == MediaMetadataEditor.RATING_KEY_BY_USER && newValue instanceof Rating) {
96 mCallback.onSetRating(newValue);
  /packages/apps/Calendar/src/com/android/calendar/
QuickResponseSettings.java 86 public boolean onPreferenceChange(Preference preference, Object newValue) {
89 if (!mResponses[i].equals(newValue)) {
90 mResponses[i] = (String) newValue;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/preference/
DisplayOrderPreference.java 78 int newValue = Integer.parseInt(value);
79 if (newValue != mPreferences.getDisplayOrder()) {
80 mPreferences.setDisplayOrder(newValue);
SortOrderPreference.java 77 int newValue = Integer.parseInt(value);
78 if (newValue != mPreferences.getSortOrder()) {
79 mPreferences.setSortOrder(newValue);
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DropDownEditor.java 72 Object newValue = adapter.getItem(position);
73 if (newValue.equals(oldValue))
75 item.setValue(newValue);
  /toolchain/binutils/binutils-2.25/cpu/
sh.cpu 191 (set (newvalue) (set (reg h-sr) (or (and (reg h-sr) (inv (sll 1 14))) (sll SI newvalue 14))))
200 (set (newvalue) (set (reg h-sr) (or (and (reg h-sr) (inv (sll 1 13))) (sll SI newvalue 13))))
209 (set (newvalue) (set (reg h-sr) (or (and (reg h-sr) (inv (sll 1 12))) (sll SI newvalue 12))))
218 (set (newvalue) (set (reg h-sr) (or (and (reg h-sr) (inv 2)) (sll SI newvalue 1))))
227 (set (newvalue) (set (reg h-sr) (or (and (reg h-sr) (inv (sll 1 9))) (sll SI newvalue 9)))
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameAccessTest.java 62 VariableInfo(String variableName, Value initialValue, Value setValue, Value newValue) {
66 this.valueOnSecondSuspension = newValue;
103 Value newValue) {
104 variables.add(new VariableInfo(variableName, initialValue, setValue, newValue));
108 Value newValue;
111 newValue = initialValue;
114 newValue = setValue;
116 variables.add(new VariableInfo(variableName, initialValue, setValue, newValue));
272 Value newValue = variableInfo.getValueToSet();
273 if (firstSuspension && newValue != null && !isSuspensionMethod)
    [all...]

Completed in 955 milliseconds

1 2 34 5 6 7 8 91011>>