HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 51 - 75 of 520) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpsURLConnectionImpl.java 251 public void addRequestProperty(String field, String newValue) {
252 delegate.addRequestProperty(field, newValue);
316 public void setAllowUserInteraction(boolean newValue) {
317 delegate.setAllowUserInteraction(newValue);
321 public void setDefaultUseCaches(boolean newValue) {
322 delegate.setDefaultUseCaches(newValue);
326 public void setDoInput(boolean newValue) {
327 delegate.setDoInput(newValue);
331 public void setDoOutput(boolean newValue) {
332 delegate.setDoOutput(newValue);
    [all...]
  /external/webkit/Source/WebCore/storage/
StorageEvent.h 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
46 const String& newValue() const { return m_newValue; }
50 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
59 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
  /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);
115 * @param newValue the new value
118 public final long getAndSet(int i, long newValue) {
122 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);
130 * @param newValue the new value
133 public final E getAndSet(int i, E newValue) {
137 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/webkit/Source/WebCore/html/
RangeInputType.cpp 83 void RangeInputType::setValueAsNumber(double newValue, ExceptionCode&) const
85 element()->setValue(serialize(newValue));
180 double newValue;
182 newValue = current + step;
183 if (newValue > max)
184 newValue = max;
186 newValue = current - step;
187 if (newValue < min)
188 newValue = min;
190 if (newValue != current)
    [all...]
  /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/webkit/Source/WebCore/dom/
MutationEvent.idl 32 readonly attribute DOMString newValue;
41 in DOMString newValue,
  /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/webkit/LayoutTests/dom/html/level1/core/
hc_nodevalue03.js 90 var newValue;
120 newValue = newNode.nodeValue;
122 assertNull("initiallyNull",newValue);
125 newValue = newNode.nodeValue;
127 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue07.js 91 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue08.js 92 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodevalue03.js 90 var newValue;
120 newValue = newNode.nodeValue;
122 assertNull("initiallyNull",newValue);
125 newValue = newNode.nodeValue;
127 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue07.js 91 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",newValue);
hc_nodevalue08.js 92 var newValue;
116 newValue = newNode.nodeValue;
118 assertNull("initiallyNull",newValue);
121 newValue = newNode.nodeValue;
123 assertNull("nullAfterAttemptedChange",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);

Completed in 1218 milliseconds

1 23 4 5 6 7 8 91011>>