/external/chromium_org/third_party/WebKit/Source/core/events/ |
MutationEvent.cpp | 35 const String& prevValue, const String& newValue, 40 , m_newValue(newValue) 52 const String& prevValue, const String& newValue, 62 m_newValue = newValue;
|
MutationEvent.idl | 30 readonly attribute DOMString newValue; 39 [Default=Undefined] optional DOMString newValue,
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebStorageEventDispatcherImpl.cpp | 45 const WebString& newValue, const WebURL& origin, 51 key, oldValue, newValue, securityOrigin.get(), pageURL, 57 const WebString& newValue, const WebURL& origin, 63 key, oldValue, newValue, securityOrigin.get(), pageURL,
|
/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/ |
AtomicInteger.java | 66 * @param newValue the new value 68 public final void set(int newValue) { 69 value = newValue; 75 * @param newValue the new value 78 public final void lazySet(int newValue) { 79 unsafe.putOrderedInt(this, valueOffset, newValue); 85 * @param newValue the new value 88 public final int getAndSet(int newValue) { 91 if (compareAndSet(current, newValue))
|
AtomicIntegerArray.java | 93 * @param newValue the new value 95 public final void set(int i, int newValue) { 96 unsafe.putIntVolatile(array, checkedByteOffset(i), newValue); 103 * @param newValue the new value 106 public final void lazySet(int i, int newValue) { 107 unsafe.putOrderedInt(array, checkedByteOffset(i), newValue); 115 * @param newValue the new value 118 public final int getAndSet(int i, int newValue) { 122 if (compareAndSetRaw(offset, current, newValue))
|
AtomicLong.java | 80 * @param newValue the new value 82 public final void set(long newValue) { 83 value = newValue; 89 * @param newValue the new value 92 public final void lazySet(long newValue) { 93 unsafe.putOrderedLong(this, valueOffset, newValue); 99 * @param newValue the new value 102 public final long getAndSet(long newValue) { 105 if (compareAndSet(current, newValue))
|
AtomicLongArray.java | 92 * @param newValue the new value 94 public final void set(int i, long newValue) { 95 unsafe.putLongVolatile(array, checkedByteOffset(i), newValue); 102 * @param newValue the new value 105 public final void lazySet(int i, long newValue) { 106 unsafe.putOrderedLong(array, checkedByteOffset(i), newValue); 114 * @param newValue the new value 117 public final long getAndSet(int i, long newValue) { 121 if (compareAndSetRaw(offset, current, newValue))
|
AtomicReferenceArray.java | 107 * @param newValue the new value 109 public final void set(int i, E newValue) { 110 unsafe.putObjectVolatile(array, checkedByteOffset(i), newValue); 117 * @param newValue the new value 120 public final void lazySet(int i, E newValue) { 121 unsafe.putOrderedObject(array, checkedByteOffset(i), newValue); 129 * @param newValue the new value 132 public final E getAndSet(int i, E newValue) { 136 if (compareAndSetRaw(offset, current, newValue))
|
/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));
|
/libcore/luni/src/main/java/java/beans/ |
PropertyChangeSupport.java | 84 * @param newValue 87 public void firePropertyChange(String propertyName, Object oldValue, Object newValue) { 88 firePropertyChange(new PropertyChangeEvent(sourceBean, propertyName, oldValue, newValue)); 103 * @param newValue 107 Object oldValue, Object newValue) { 109 propertyName, oldValue, newValue, index)); 197 * @param newValue 200 public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) { 201 firePropertyChange(propertyName, Boolean.valueOf(oldValue), Boolean.valueOf(newValue)); 215 * @param newValue [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
RangeInputType.cpp | 107 void RangeInputType::setValueAsDouble(double newValue, TextFieldEventBehavior eventBehavior, ExceptionState& exceptionState) const 109 setValueAsDecimal(Decimal::fromDouble(newValue), eventBehavior, exceptionState); 203 Decimal newValue; 205 newValue = current + step; 207 newValue = current - step; 209 newValue = isVertical ? current + step : current - step; 211 newValue = isVertical ? current - step : current + step; 213 newValue = current + bigStep; 215 newValue = current - bigStep; 217 newValue = isVertical ? stepRange.maximum() : stepRange.minimum() [all...] |
/external/chromium-trace/trace-viewer/src/base/ |
properties.js | 14 * @param {*} newValue The new value for the property. 17 function dispatchPropertyChange(target, propertyName, newValue, oldValue, 22 e.newValue = newValue; 35 function setPropertyAndDispatchChange(obj, propertyName, newValue) { 38 obj[privateName] = newValue; 39 if (oldValue !== newValue) 41 newValue, oldValue, true, false);
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AtomicLongMapTest.java | 256 long newValue = random.nextInt(MAX_ADDEND); 259 long result = map.put(key, newValue); 261 assertEquals(newValue, after); 263 newValue += newValue; 314 long newValue = random.nextInt(MAX_ADDEND); 317 long result = map.putIfAbsent(key, newValue); 320 assertEquals(before == 0 ? newValue : before, after); 324 result = map.putIfAbsent(key, newValue); 328 assertEquals(newValue, after) [all...] |
/external/webrtc/src/system_wrappers/source/ |
atomic32_mac.cc | 50 bool Atomic32::CompareExchange(WebRtc_Word32 newValue, 53 return OSAtomicCompareAndSwap32Barrier(compareValue, newValue, &_value);
|
atomic32_posix.cc | 54 bool Atomic32::CompareExchange(WebRtc_Word32 newValue, 57 return __sync_bool_compare_and_swap(&_value, compareValue, newValue);
|
atomic32_win.cc | 57 bool Atomic32::CompareExchange(WebRtc_Word32 newValue, 62 newValue,
|
/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;
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/ |
braille_captions_background.js | 78 * @param {boolean} newValue The new value of the active flag. 80 cvox.BrailleCaptionsBackground.setActive = function(newValue) { 83 window['prefs'].setPref(self.PREF_KEY, String(newValue)); 84 if (oldValue != newValue) { 88 var msg = newValue ?
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementCallbackInvocation.cpp | 73 AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue); 83 AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) 87 , m_newValue(newValue) 130 PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) 132 return adoptPtr(new AttributeChangedInvocation(callbacks, name, oldValue, newValue));
|
/external/chromium_org/third_party/WebKit/Source/core/storage/ |
StorageEvent.h | 42 String newValue; 50 static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); 56 const String& newValue() const { return m_newValue; } 61 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); 72 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
|
/external/chromium_org/ui/file_manager/file_manager/audio_player/elements/ |
control_panel.js | 57 * @param {AudioPlayerModel} newValue New Value. 59 modelChanged: function(oldValue, newValue) { 60 this.$.volumeSlider.model = newValue; 109 * @param {number} newValue new value. 111 durationChanged: function(oldValue, 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);
|