HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 51 - 75 of 311) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/chromium/src/
WebStorageEventDispatcherImpl.h 47 const WebString& newValue, const WebString& origin,
WebOptionElement.cpp 44 void WebOptionElement::setValue(const WebString& newValue)
46 return unwrap<HTMLOptionElement>()->setValue(newValue);
WebStorageEventDispatcherImpl.cpp 58 const WebString& newValue, const WebString& origin,
67 m_eventDispatcher->dispatchStorageEvent(key, oldValue, newValue, securityOrigin.get(), url, storageType);
  /packages/apps/Contacts/src/com/android/contacts/editor/
BaseRawContactEditorView.java 126 final boolean newValue;
128 newValue = true;
130 newValue = value;
133 if (newValue == mExpanded) return;
134 mExpanded = newValue;
135 mBody.setVisibility(newValue ? View.VISIBLE : View.GONE);
136 mDivider.setVisibility(newValue ? View.GONE : View.VISIBLE);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicReferenceFieldUpdater.java 113 * @param newValue the new value
115 public abstract void set(T obj, V newValue);
122 * @param newValue the new value
125 public abstract void lazySet(T obj, V newValue);
141 * @param newValue the new value
144 public V getAndSet(T obj, V newValue) {
147 if (compareAndSet(obj, current, newValue))
241 public void set(T obj, V newValue) {
243 (newValue != null && vclass != null &&
244 vclass != newValue.getClass())
    [all...]
AtomicIntegerArray.java 94 * @param newValue the new value
96 public final void set(int i, int newValue) {
97 unsafe.putIntVolatile(array, checkedByteOffset(i), newValue);
104 * @param newValue the new value
107 public final void lazySet(int i, int newValue) {
108 unsafe.putOrderedInt(array, checkedByteOffset(i), newValue);
116 * @param newValue the new value
119 public final int getAndSet(int i, int newValue) {
123 if (compareAndSetRaw(offset, current, newValue))
AtomicLongArray.java 93 * @param newValue the new value
95 public final void set(int i, long newValue) {
96 unsafe.putLongVolatile(array, checkedByteOffset(i), newValue);
103 * @param newValue the new value
106 public final void lazySet(int i, long newValue) {
107 unsafe.putOrderedLong(array, checkedByteOffset(i), newValue);
116 * @param newValue the new value
119 public final long getAndSet(int i, long newValue) {
123 if (compareAndSetRaw(offset, current, newValue))
AtomicReferenceArray.java 95 * @param newValue the new value
97 public final void set(int i, E newValue) {
98 unsafe.putObjectVolatile(array, checkedByteOffset(i), newValue);
105 * @param newValue the new value
108 public final void lazySet(int i, E newValue) {
109 unsafe.putOrderedObject(array, checkedByteOffset(i), newValue);
118 * @param newValue the new value
121 public final E getAndSet(int i, E newValue) {
125 if (compareAndSetRaw(offset, current, newValue))
AtomicIntegerFieldUpdater.java 97 * @param newValue the new value
99 public abstract void set(T obj, int newValue);
106 * @param newValue the new value
109 public abstract void lazySet(T obj, int newValue);
126 * @param newValue the new value
129 public int getAndSet(T obj, int newValue) {
132 if (compareAndSet(obj, current, newValue))
295 public void set(T obj, int newValue) {
297 unsafe.putIntVolatile(obj, offset, newValue);
300 public void lazySet(T obj, int newValue) {
    [all...]
  /external/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 51 public boolean replace(K key, V oldValue, V newValue) {
52 return delegate().replace(key, oldValue, newValue);
  /external/javassist/src/main/javassist/bytecode/annotation/
BooleanMemberValue.java 78 public void setValue(boolean newValue) {
79 valueIndex = cp.addIntegerInfo(newValue ? 1 : 0);
ByteMemberValue.java 78 public void setValue(byte newValue) {
79 valueIndex = cp.addIntegerInfo(newValue);
CharMemberValue.java 79 public void setValue(char newValue) {
80 valueIndex = cp.addIntegerInfo(newValue);
DoubleMemberValue.java 80 public void setValue(double newValue) {
81 valueIndex = cp.addDoubleInfo(newValue);
FloatMemberValue.java 80 public void setValue(float newValue) {
81 valueIndex = cp.addFloatInfo(newValue);
IntegerMemberValue.java 85 public void setValue(int newValue) {
86 valueIndex = cp.addIntegerInfo(newValue);
LongMemberValue.java 79 public void setValue(long newValue) {
80 valueIndex = cp.addLongInfo(newValue);
ShortMemberValue.java 79 public void setValue(short newValue) {
80 valueIndex = cp.addIntegerInfo(newValue);
StringMemberValue.java 79 public void setValue(String newValue) {
80 valueIndex = cp.addUtf8Info(newValue);
  /external/webkit/Source/WebCore/accessibility/
AccessibilityScrollbar.cpp 103 float newValue = value * m_scrollbar->maximum();
104 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
  /external/webkit/Source/WebCore/platform/gtk/
GtkVersioning.h 101 #define gtk_adjustment_set_page_size(adj, newValue) ((adj)->page_size = newValue)
102 #define gtk_adjustment_set_value(adj, newValue) ((adj)->value = newValue)
103 #define gtk_adjustment_set_lower(adj, newValue) ((adj)->lower = newValue)
104 #define gtk_adjustment_set_upper(adj, newValue) ((adj)->upper = newValue)
  /external/webrtc/src/system_wrappers/source/
atomic32.cc 74 bool Atomic32Wrapper::CompareExchange(WebRtc_Word32 newValue,
77 return _impl.CompareExchange(newValue,compareValue);
  /external/webrtc/src/system_wrappers/interface/
atomic32_wrapper.h 37 // Sets the value atomically to newValue if the value equals compare value.
39 bool CompareExchange(WebRtc_Word32 newValue, WebRtc_Word32 compareValue);
  /frameworks/base/core/java/android/server/
BluetoothAdapterProperties.java 78 String newValue = null;
91 newValue = str.toString();
94 newValue = properties[++i];
96 mPropertiesMap.put(name, newValue);
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentMap.java 88 * map.put(key, newValue);
95 * @param newValue value to be associated with the specified key
106 boolean replace(K key, V oldValue, V newValue);

Completed in 939 milliseconds

1 23 4 5 6 7 8 91011>>