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

12345678910

/macosx-10.9.5/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.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceValue.cpp62 double newValue; local
64 newValue = g_value_get_double(gValue);
66 newValue = g_value_get_float(gValue);
68 newValue = g_value_get_int64(gValue);
70 newValue = g_value_get_int(gValue);
72 newValue = g_value_get_long(gValue);
74 newValue = g_value_get_ulong(gValue);
76 newValue = g_value_get_uint64(gValue);
78 newValue = g_value_get_uint(gValue);
87 newValue
[all...]
/macosx-10.9.5/objc4-551.1/runtime/Accessors.subproj/
H A Dobjc-accessors.mm75 static inline void reallySetProperty(id self, SEL _cmd, id newValue, ptrdiff_t offset, bool atomic, bool copy, bool mutableCopy) __attribute__((always_inline));
77 static inline void reallySetProperty(id self, SEL _cmd, id newValue, ptrdiff_t offset, bool atomic, bool copy, bool mutableCopy)
83 newValue = [newValue copyWithZone:NULL];
85 newValue = [newValue mutableCopyWithZone:NULL];
87 if (*slot == newValue) return;
88 newValue = objc_retain(newValue);
93 *slot = 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.9.5/Security-55471.14.18/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.9.5/Security-55471.14.18/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.9.5/WebCore-7537.78.1/dom/
H A DMutationEvent.cpp36 const String& prevValue, const String& newValue,
41 , m_newValue(newValue)
52 const String& prevValue, const String& newValue,
62 m_newValue = newValue;
35 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
51 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.9.5/WebCore-7537.78.1/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.9.5/WebCore-7537.78.1/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.9.5/xnu-2422.115.4/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.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebSettings_p.h28 void set##prefix(const String& key, type newValue) { \
30 if (get##prefix(key) == newValue) \
37 primitiveValue.prefix##Value = newValue; \
94 void setString(const String& key, const String& newValue) argument
97 if (getString(key) == newValue)
105 impl->stringValues.set(key, newValue);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDOMStorage.js200 * @param {string} newValue
202 _domStorageItemAdded: function(storageId, key, newValue)
208 newValue: newValue property in class:_domStorageItemAdded.storageData
217 * @param {string} newValue
219 _domStorageItemUpdated: function(storageId, key, oldValue, newValue)
226 newValue: newValue property in class:_domStorageItemUpdated.storageData
286 * @param {string} newValue
288 domStorageItemAdded: function(storageId, key, newValue)
[all...]
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityScrollbar.cpp102 float newValue = value * m_scrollbar->maximum(); local
103 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/macosx-10.9.5/xnu-2422.115.4/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.9.5/configd-596.15/configd.tproj/
H A D_confignotify.c39 Boolean newValue = FALSE; local
59 newValue = TRUE;
65 if (newValue) {
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DRangeInputType.cpp116 void RangeInputType::setValueAsDecimal(const Decimal& newValue, TextFieldEventBehavior eventBehavior, ExceptionCode&) const argument
118 element()->setValue(serialize(newValue), eventBehavior);
222 Decimal newValue; local
224 newValue = current + step;
226 newValue = current - step;
228 newValue = isVertical ? current + step : current - step;
230 newValue = isVertical ? current - step : current + step;
232 newValue = current + bigStep;
234 newValue = current - bigStep;
236 newValue
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/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.9.5/WebKit2-7537.78.2/UIProcess/Launcher/mac/
H A DEnvironmentVariables.cpp87 Vector<char, 128> newValue; local
88 newValue.append(existingValue, strlen(existingValue));
89 newValue.append(separator);
90 newValue.append(value, strlen(value) + 1);
92 set(name, newValue.data());

Completed in 177 milliseconds

12345678910