Searched refs:newValue (Results 1 - 25 of 252) sorted by relevance

1234567891011

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredMapEntry.java29 public Object setValue(Object newValue) { argument
34 iter.set(newValue);
39 oldValue = coll.put(getKey(), newValue);
41 setValueInternal(newValue);
H A DMapEntryParameter.java105 public Object setValue(Object newValue) { argument
110 final void setValueInternal(Object newValue) { argument
112 this.value = newValue;
/macosx-10.10/objc4-646/runtime/Accessors.subproj/
H A Dobjc-accessors.mm79 static inline void reallySetProperty(id self, SEL _cmd, id newValue, ptrdiff_t offset, bool atomic, bool copy, bool mutableCopy) __attribute__((always_inline));
81 static inline void reallySetProperty(id self, SEL _cmd, id newValue, ptrdiff_t offset, bool atomic, bool copy, bool mutableCopy)
84 object_setClass(self, newValue);
92 newValue = [newValue copyWithZone:NULL];
94 newValue = [newValue mutableCopyWithZone:NULL];
96 if (*slot == newValue) return;
97 newValue = objc_retain(newValue);
[all...]
H A Dobjc-accessors.h34 extern void objc_setProperty_non_gc(id self, SEL _cmd, ptrdiff_t offset, id newValue, BOOL atomic, signed char shouldCopy);
37 extern void objc_setProperty_gc(id self, SEL _cmd, ptrdiff_t offset, id newValue, BOOL atomic, signed char shouldCopy);
/macosx-10.10/WTF-7600.1.24/wtf/
H A DCompilationThread.cpp55 bool exchangeIsCompilationThread(bool newValue) argument
59 **s_isCompilationThread = newValue;
H A DAtomics.h75 inline bool weakCompareAndSwap(volatile unsigned* location, unsigned expected, unsigned newValue) argument
78 return InterlockedCompareExchange(reinterpret_cast<LONG*>(const_cast<unsigned*>(location)), static_cast<LONG>(newValue), static_cast<LONG>(expected)) == static_cast<LONG>(expected);
80 return InterlockedCompareExchange(reinterpret_cast<LONG volatile*>(location), static_cast<LONG>(newValue), static_cast<LONG>(expected)) == static_cast<LONG>(expected);
84 inline bool weakCompareAndSwap(void*volatile* location, void* expected, void* newValue) argument
86 return InterlockedCompareExchangePointer(location, newValue, expected) == expected;
89 inline bool weakCompareAndSwap(volatile unsigned* location, unsigned expected, unsigned newValue)
98 : "r"(newValue)
112 : "r"(expected), "r"(newValue)
126 : "r"(expected), "r"(newValue)
140 : "r"(expected), "r"(newValue)
210 weakCompareAndSwapUIntPtr(volatile uintptr_t* location, uintptr_t expected, uintptr_t newValue) argument
215 weakCompareAndSwapSize(volatile size_t* location, size_t expected, size_t newValue) argument
287 weakCompareAndSwap(uint8_t* location, uint8_t expected, uint8_t newValue) argument
[all...]
H A DTemporaryChange.h46 TemporaryChange(T& scopedVariable, T newValue) argument
50 m_scopedVariable = newValue;
H A DCompilationThread.h31 WTF_EXPORT_PRIVATE bool exchangeIsCompilationThread(bool newValue);
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dthreading_internal.h61 static bool cas(Integer oldValue, Integer newValue, Integer &base) argument
62 { return OSAtomicCompareAndSwap32(oldValue, newValue, &base); }
63 static bool casb(Integer oldValue, Integer newValue, Integer &base) argument
64 { return OSAtomicCompareAndSwap32Barrier(oldValue, newValue, &base); }
76 static bool cas(Integer oldValue, Integer newValue, Integer &base) argument
77 { return OSAtomicCompareAndSwap64(oldValue, newValue, &base); }
78 static bool casb(Integer oldValue, Integer newValue, Integer &base) argument
79 { return OSAtomicCompareAndSwap64Barrier(oldValue, newValue, &base); }
103 static bool cas(Type oldValue, Type newValue, Type &store) argument
104 { return _Ops::cas(_Type(oldValue), _Type(newValue), (_Typ
105 casb(Type oldValue, Type newValue, Type &store) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dthreading_internal.h61 static bool cas(Integer oldValue, Integer newValue, Integer &base) argument
62 { return OSAtomicCompareAndSwap32(oldValue, newValue, &base); }
63 static bool casb(Integer oldValue, Integer newValue, Integer &base) argument
64 { return OSAtomicCompareAndSwap32Barrier(oldValue, newValue, &base); }
76 static bool cas(Integer oldValue, Integer newValue, Integer &base) argument
77 { return OSAtomicCompareAndSwap64(oldValue, newValue, &base); }
78 static bool casb(Integer oldValue, Integer newValue, Integer &base) argument
79 { return OSAtomicCompareAndSwap64Barrier(oldValue, newValue, &base); }
103 static bool cas(Type oldValue, Type newValue, Type &store) argument
104 { return _Ops::cas(_Type(oldValue), _Type(newValue), (_Typ
105 casb(Type oldValue, Type newValue, Type &store) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DMutationEvent.cpp35 const String& prevValue, const String& newValue,
40 , m_newValue(newValue)
51 const String& prevValue, const String& newValue,
61 m_newValue = newValue;
34 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
50 initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
H A DMutationEvent.h48 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; } function in class:WebCore::MutationEvent
68 const String& prevValue, const String& newValue,
H A DMutationEvent.idl30 readonly attribute DOMString newValue;
39 [Default=Undefined] optional DOMString newValue,
/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageEventDispatcher.h45 static void dispatchSessionStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin*, Frame* sourceFrame);
46 static void dispatchLocalStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin*, Frame* sourceFrame);
48 static void dispatchSessionStorageEventsToFrames(Page&, const Vector<RefPtr<Frame>>& frames, const String& key, const String& oldValue, const String& newValue, const String& url, SecurityOrigin*);
49 static void dispatchLocalStorageEventsToFrames(PageGroup&, const Vector<RefPtr<Frame>>& frames, const String& key, const String& oldValue, const String& newValue, const String& url, SecurityOrigin*);
H A DStorageEvent.cpp51 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
53 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
61 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
65 , m_newValue(newValue)
75 , m_newValue(initializer.newValue)
81 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
90 m_newValue = newValue;
H A DStorageEvent.h41 String newValue; member in struct:WebCore::StorageEventInit
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; } function in class:WebCore::StorageEvent
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);
H A DStorageEventDispatcher.cpp41 void StorageEventDispatcher::dispatchSessionStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
55 dispatchSessionStorageEventsToFrames(*page, frames, key, oldValue, newValue, sourceFrame->document()->url(), securityOrigin);
58 void StorageEventDispatcher::dispatchLocalStorageEvents(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
75 dispatchLocalStorageEventsToFrames(page->group(), frames, key, oldValue, newValue, sourceFrame->document()->url(), securityOrigin);
78 void StorageEventDispatcher::dispatchSessionStorageEventsToFrames(Page& page, const Vector<RefPtr<Frame>>& frames, const String& key, const String& oldValue, const String& newValue, const String& url, SecurityOrigin* securityOrigin) argument
80 InspectorInstrumentation::didDispatchDOMStorageEvent(key, oldValue, newValue, SessionStorage, securityOrigin, &page);
86 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, url, storage));
90 void StorageEventDispatcher::dispatchLocalStorageEventsToFrames(PageGroup& pageGroup, const Vector<RefPtr<Frame>>& frames, const String& key, const String& oldValue, const String& newValue, const String& url, SecurityOrigin* securityOrigin) argument
94 InspectorInstrumentation::didDispatchDOMStorageEvent(key, oldValue, newValue, LocalStorage, securityOrigin, *it);
100 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, ur
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DDOMWindowCSS.cpp51 String newValue = value;
52 int bangIndex = newValue.length() - 9 - 1;
53 if (newValue[bangIndex] == ' ')
55 newValue = newValue.left(bangIndex);
57 return newValue;
H A DMediaQueryList.cpp76 void MediaQueryList::setMatches(bool newValue) argument
80 if (newValue == m_matches)
83 m_matches = newValue;
/macosx-10.10/xnu-2782.1.97/libkern/gen/
H A DOSAtomicOperations.c49 * native Boolean CompareAndSwap(UInt32 oldValue, UInt32 newValue, UInt32 * oldValuePtr);
78 UInt32 newValue; local
82 newValue = ((oldValue & and_mask) | or_mask) ^ xor_mask;
83 } while (! OSCompareAndSwap(oldValue, newValue, value));
115 UInt32 newValue; local
121 newValue = (oldValue & ~mask) | (newValue8 << shift);
123 return OSCompareAndSwap(oldValue, newValue, value32);
175 SInt8 newValue; local
179 newValue = oldValue + amount;
180 } while (! OSCompareAndSwap8((UInt8) oldValue, (UInt8) newValue, (volatil
189 UInt8 newValue; local
223 UInt32 newValue; local
249 SInt16 newValue; local
263 UInt16 newValue; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DPropertyName.h58 uint32_t newValue = *(++characters) - '0'; local
59 if (newValue > 9)
63 newValue += value;
64 if (newValue < value)
66 value = newValue;
/macosx-10.10/WebCore-7600.1.25/accessibility/atk/
H A DWebKitAccessibleInterfaceValue.cpp41 static bool webkitAccessibleSetNewValue(AtkValue* coreValue, const gdouble newValue) argument
49 value = std::max(static_cast<double>(coreObject->minValueForRange()), newValue);
50 value = std::min(static_cast<double>(coreObject->maxValueForRange()), newValue);
95 static void webkitAccessibleSetValue(AtkValue* value, const gdouble newValue) argument
100 webkitAccessibleSetNewValue(value, newValue);
153 double newValue; local
155 newValue = g_value_get_double(gValue);
157 newValue = g_value_get_float(gValue);
159 newValue = g_value_get_int64(gValue);
161 newValue
[all...]
/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityScrollbar.cpp102 float newValue = value * m_scrollbar->maximum(); local
103 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/macosx-10.10/xnu-2782.1.97/libkern/x86_64/
H A DOSAtomic.s30 #;* Boolean OSCompareAndSwap(SInt32 oldValue, SInt32 newValue, SInt32 *ptr) *
34 _OSCompareAndSwap: #;oldValue, newValue, ptr
49 #;* Boolean OSCompareAndSwap64(SInt64 oldValue, SInt64 newValue, SInt64 *ptr) *
56 _OSCompareAndSwapPtr: #;oldValue, newValue, ptr
/macosx-10.10/configd-699.1.5/configd.tproj/
H A D_confignotify.c39 Boolean newValue = FALSE; local
59 newValue = TRUE;
65 if (newValue) {

Completed in 134 milliseconds

1234567891011