Searched defs:newValue (Results 1 - 25 of 130) sorted by relevance

123456

/external/webkit/Source/WebKit/chromium/src/
H A DWebDOMMutationEvent.cpp50 WebString WebDOMMutationEvent::newValue() const function in class:WebKit::WebDOMMutationEvent
52 return WebString(constUnwrap<MutationEvent>()->newValue());
H A DWebMutationEvent.cpp50 WebString WebMutationEvent::newValue() const function in class:WebKit::WebMutationEvent
52 return WebString(constUnwrap<MutationEvent>()->newValue());
H A DStorageEventDispatcherChromium.cpp47 const String& newValue, StorageType storageType,
51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
46 dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* origin, Frame* sourceFrame) argument
H A DStorageEventDispatcherImpl.cpp54 const String& newValue, SecurityOrigin* securityOrigin,
78 frames[i]->document()->dispatchWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, url, storage));
53 dispatchStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& url, StorageType storageType) argument
H A DWebStorageEventDispatcherImpl.cpp58 const WebString& newValue, const WebString& origin,
67 m_eventDispatcher->dispatchStorageEvent(key, oldValue, newValue, securityOrigin.get(), url, storageType);
57 dispatchStorageEvent(const WebString& key, const WebString& oldValue, const WebString& newValue, const WebString& origin, const WebURL& passedInURL, bool isLocalStorage) argument
/external/guava/guava/src/com/google/common/collect/
H A DForwardingConcurrentMap.java57 public boolean replace(K key, V oldValue, V newValue) { argument
58 return delegate().replace(key, oldValue, newValue);
H A DCount.java54 public void set(int newValue) { argument
55 value = newValue;
58 public int getAndSet(int newValue) { argument
60 value = newValue;
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentMap.java34 boolean replace(K key, V oldValue, V newValue); argument
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityScrollbar.cpp103 float newValue = value * m_scrollbar->maximum(); local
104 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/external/webkit/Source/WebCore/dom/
H A DMutationEvent.cpp34 const String& prevValue, const String& newValue,
39 , m_newValue(newValue)
50 const String& prevValue, const String& newValue,
60 m_newValue = newValue;
33 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
49 initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
/external/webkit/Source/WebCore/html/
H A DStepRange.cpp77 double newValue = clampValue(oldValue); local
80 *wasClamped = !parseSuccess || newValue != oldValue;
82 return newValue;
/external/webkit/Source/WebCore/storage/
H A DStorageEvent.cpp48 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
50 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
53 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
57 , m_newValue(newValue)
63 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
72 m_newValue = newValue;
H A DStorageEvent.h41 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; } function in class:WebCore::StorageEvent
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);
H A DStorageEventDispatcher.cpp41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
65 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
82 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
/external/webkit/Source/WebKit/chromium/public/
H A DWebStorageArea.h70 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue, WebFrame*) argument
72 setItem(key, newValue, url, result, oldValue);
75 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue) argument
77 setItem(key, newValue, url, result, oldValue, 0);
/external/webrtc/src/system_wrappers/source/
H A Datomic32.cc74 bool Atomic32Wrapper::CompareExchange(WebRtc_Word32 newValue, argument
77 return _impl.CompareExchange(newValue,compareValue);
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListSetTester.java64 private void doTestSet(E newValue) { argument
68 initialValue, getList().set(index, newValue));
70 newValue, getList().get(index));
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationMemberValue.java70 public void setValue(Annotation newValue) { argument
71 value = newValue;
H A DBooleanMemberValue.java78 public void setValue(boolean newValue) { argument
79 valueIndex = cp.addIntegerInfo(newValue ? 1 : 0);
H A DByteMemberValue.java78 public void setValue(byte newValue) { argument
79 valueIndex = cp.addIntegerInfo(newValue);
H A DCharMemberValue.java79 public void setValue(char newValue) { argument
80 valueIndex = cp.addIntegerInfo(newValue);
H A DDoubleMemberValue.java80 public void setValue(double newValue) { argument
81 valueIndex = cp.addDoubleInfo(newValue);
H A DFloatMemberValue.java80 public void setValue(float newValue) { argument
81 valueIndex = cp.addFloatInfo(newValue);
H A DIntegerMemberValue.java85 public void setValue(int newValue) { argument
86 valueIndex = cp.addIntegerInfo(newValue);
H A DLongMemberValue.java79 public void setValue(long newValue) { argument
80 valueIndex = cp.addLongInfo(newValue);

Completed in 404 milliseconds

123456