/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
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);
|
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);
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AtomicDouble.java | 93 * @param newValue the new value 95 public final void set(double newValue) { 96 long next = doubleToRawLongBits(newValue); 103 * @param newValue the new value 105 public final void lazySet(double newValue) { 106 set(newValue); 108 // long next = doubleToRawLongBits(newValue); 115 * @param newValue the new value 118 public final double getAndSet(double newValue) { 119 long next = doubleToRawLongBits(newValue); [all...] |
AtomicDoubleArray.java | 100 * @param newValue the new value 102 public final void set(int i, double newValue) { 103 long next = doubleToRawLongBits(newValue); 111 * @param newValue the new value 113 public final void lazySet(int i, double newValue) { 114 set(i, newValue); 116 // long next = doubleToRawLongBits(newValue); 125 * @param newValue the new value 128 public final double getAndSet(int i, double newValue) { 129 long next = doubleToRawLongBits(newValue); [all...] |
AtomicLongMap.java | 112 long newValue = oldValue + delta; 113 if (atomic.compareAndSet(oldValue, newValue)) { 114 return newValue; 161 long newValue = oldValue + delta; 162 if (atomic.compareAndSet(oldValue, newValue)) { 171 * Associates {@code newValue} with {@code key} in this map, and returns the value previously 174 public long put(K key, long newValue) { 178 atomic = map.putIfAbsent(key, new AtomicLong(newValue)); 189 if (map.replace(key, atomic, new AtomicLong(newValue))) { 196 if (atomic.compareAndSet(oldValue, newValue)) { [all...] |
/external/webkit/Source/WebCore/css/ |
MediaQueryList.cpp | 76 void MediaQueryList::setMatches(bool newValue) 80 if (newValue == m_matches) 83 m_matches = newValue;
|
/external/webkit/Source/WebCore/html/ |
StepRange.cpp | 77 double newValue = clampValue(oldValue); 80 *wasClamped = !parseSuccess || newValue != oldValue; 82 return 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/Contacts/src/com/android/contacts/preference/ |
DisplayOrderPreference.java | 78 int newValue = Integer.parseInt(value); 79 if (newValue != mPreferences.getDisplayOrder()) { 80 mPreferences.setDisplayOrder(newValue);
|
SortOrderPreference.java | 78 int newValue = Integer.parseInt(value); 79 if (newValue != mPreferences.getSortOrder()) { 80 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);
|