HomeSort by relevance Sort by last modified time
    Searched refs:newValue (Results 26 - 50 of 508) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
Count.java 54 public void set(int newValue) {
55 value = newValue;
58 public int getAndSet(int newValue) {
60 value = newValue;
  /external/srec/shared/include/
ESR_SessionTypeListener.h 49 * @param newValue New property value
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StorageLowState.java 68 public static void setIsStorageLow(boolean newValue) {
69 if (sIsStorageLow == newValue) {
73 sIsStorageLow = newValue;
77 if (newValue) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebDOMMutationEvent.cpp 50 WebString WebDOMMutationEvent::newValue() const
52 return WebString(constUnwrap<MutationEvent>()->newValue());
WebMutationEvent.cpp 50 WebString WebMutationEvent::newValue() const
52 return WebString(constUnwrap<MutationEvent>()->newValue());
  /external/chromium_org/third_party/WebKit/public/web/
WebStorageEventDispatcher.h 47 const WebString& newValue, const WebURL& origin,
54 const WebString& newValue, const WebURL& origin,
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppVariant.cpp 133 void CppVariant::set(const NPVariant& newValue)
136 switch (newValue.type) {
138 set(newValue.value.boolValue);
141 set(newValue.value.intValue);
144 set(newValue.value.doubleValue);
147 set(newValue.value.stringValue);
151 type = newValue.type;
154 set(newValue.value.objectValue);
165 void CppVariant::set(bool newValue)
169 value.boolValue = newValue;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicBoolean.java 96 * @param newValue the new value
98 public final void set(boolean newValue) {
99 value = newValue ? 1 : 0;
105 * @param newValue the new value
108 public final void lazySet(boolean newValue) {
109 int v = newValue ? 1 : 0;
116 * @param newValue the new value
119 public final boolean getAndSet(boolean newValue) {
122 if (compareAndSet(current, newValue))
AtomicReference.java 60 * @param newValue the new value
62 public final void set(V newValue) {
63 value = newValue;
69 * @param newValue the new value
72 public final void lazySet(V newValue) {
73 unsafe.putOrderedObject(this, valueOffset, newValue);
107 * @param newValue the new value
110 public final V getAndSet(V newValue) {
113 if (compareAndSet(x, newValue))
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))
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))
  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageEvent.cpp 52 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
54 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
62 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
66 , m_newValue(newValue)
77 , m_newValue(initializer.newValue)
84 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
93 m_newValue = newValue;
StorageEvent.h 41 String newValue;
49 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
55 const String& newValue() const { return m_newValue; }
59 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
68 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationEvent.h 48 const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0)
50 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
54 const String& prevValue, const String& newValue,
59 String newValue() const { return m_newValue; }
68 const String& prevValue, const String& newValue,
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodevalue03.java 61 String newValue;
78 newValue = newNode.getNodeValue();
79 assertNull("initiallyNull", newValue);
81 newValue = newNode.getNodeValue();
82 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);
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);
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeSupportTest.java 331 Object newValue = new Object();
335 "myProp", oldValue, newValue);
342 sup.firePropertyChange("myProp", oldValue, newValue);
604 Object newValue = new Object();
608 "myProp", oldValue, newValue);
610 "myProp", oldValue, newValue);
614 "myProp", oldValue, newValue);
619 sup.firePropertyChange("myProp", oldValue, newValue);
633 Object newValue = new Object();
634 Object oldValue = newValue;
    [all...]
PropertyChangeEventTest.java 38 Object newValue = new Object();
41 oldValue, newValue);
45 assertSame(newValue, event.getNewValue());
70 Object newValue = new Object();
72 oldValue, newValue);
76 assertSame(newValue, event.getNewValue());
98 Object newValue = new Object();
101 oldValue, newValue);
110 assertSame(newValue, event.getNewValue());
120 Object newValue = new Object()
    [all...]
  /art/runtime/native/
sun_misc_Unsafe.cc 26 static jboolean Unsafe_compareAndSwapInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint expectedValue, jint newValue) {
32 int result = android_atomic_release_cas(expectedValue, newValue, address);
36 static jboolean Unsafe_compareAndSwapLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, jlong expectedValue, jlong newValue) {
42 bool success = QuasiAtomic::Cas64(expectedValue, newValue, address);
50 mirror::Object* newValue = soa.Decode<mirror::Object*>(javaNewValue);
55 reinterpret_cast<int32_t>(newValue), address);
57 Runtime::Current()->GetHeap()->WriteBarrierField(obj, MemberOffset(offset), newValue);
74 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) {
77 obj->SetField32(MemberOffset(offset), newValue, false);
80 static void Unsafe_putIntVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) {
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebStorageArea.h 65 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& pageUrl, Result& result)
68 setItem(key, newValue, pageUrl, result, unused);
91 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { }
  /external/guava/guava-tests/test/com/google/common/cache/
AbstractLoadingCacheTest.java 60 Object newValue = new Object();
61 valueRef.set(newValue);
62 assertSame(newValue, cache.getUnchecked(new Object()));
91 Object newValue = new Object();
92 valueRef.set(newValue);
93 assertSame(newValue, cache.getUnchecked(new Object()));
122 Object newValue = new Object();
123 valueRef.set(newValue);
124 assertSame(newValue, cache.getUnchecked(new Object()));
153 Object newValue = new Object()
    [all...]
  /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...]

Completed in 2328 milliseconds

12 3 4 5 6 7 8 91011>>