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

12345678

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMutationEvent.cpp48 WebString WebMutationEvent::newValue() const function in class:blink::WebMutationEvent
50 return WebString(constUnwrap<MutationEvent>()->newValue());
H A DWebDOMActivityLogger.cpp55 virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) OVERRIDE
57 m_domActivityLogger->logSetter(WebString(apiName), newValue, getURL(), getTitle()); variable
H A DWebOptionElement.cpp42 void WebOptionElement::setValue(const WebString& newValue) argument
44 unwrap<HTMLOptionElement>()->setValue(newValue);
H A DWebStorageEventDispatcherImpl.cpp45 const WebString& newValue, const WebURL& origin,
51 key, oldValue, newValue, securityOrigin.get(), pageURL,
57 const WebString& newValue, const WebURL& origin,
63 key, oldValue, newValue, securityOrigin.get(), pageURL,
43 dispatchLocalStorageEvent( const WebString& key, const WebString& oldValue, const WebString& newValue, const WebURL& origin, const WebURL& pageURL, WebStorageArea* sourceAreaInstance, bool originatedInProcess) argument
55 dispatchSessionStorageEvent( const WebString& key, const WebString& oldValue, const WebString& newValue, const WebURL& origin, const WebURL& pageURL, const WebStorageNamespace& sessionNamespace, WebStorageArea* sourceAreaInstance, bool originatedInProcess) argument
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTemporaryChange.h46 TemporaryChange(T& scopedVariable, T newValue) argument
50 m_scopedVariable = newValue;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8DOMActivityLogger.h47 virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) { } argument
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXScrollbar.cpp105 float newValue = value * m_scrollbar->maximum(); local
106 m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageEvent.h42 String newValue; member in struct:blink::StorageEventInit
51 static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
57 const String& newValue() const { return m_newValue; } function in class:blink::FINAL
61 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
72 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
H A DStorageEvent.cpp50 PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
52 return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
60 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
64 , m_newValue(newValue)
74 , m_newValue(initializer.newValue)
80 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
89 m_newValue = newValue;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMActivityLogger.h46 virtual void logSetter(const WebString& apiName, const v8::Handle<v8::Value>& newValue, const WebURL& url, const WebString& title) { } 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/webrtc/src/system_wrappers/source/
H A Datomic32_mac.cc50 bool Atomic32::CompareExchange(WebRtc_Word32 newValue, argument
53 return OSAtomicCompareAndSwap32Barrier(compareValue, newValue, &_value);
H A Datomic32_posix.cc54 bool Atomic32::CompareExchange(WebRtc_Word32 newValue, argument
57 return __sync_bool_compare_and_swap(&_value, compareValue, newValue);
H A Datomic32_win.cc57 bool Atomic32::CompareExchange(WebRtc_Word32 newValue, argument
62 newValue,
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementCallbackInvocation.cpp73 AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
83 AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) argument
87 , m_newValue(newValue)
130 PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) argument
132 return adoptPtr(new AttributeChangedInvocation(callbacks, name, oldValue, newValue));
/external/chromium_org/third_party/WebKit/Source/core/events/
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, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
49 initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange) argument
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DColorPickerAdvancedComponent.java74 * @param newValue The value to give the component.
76 public void setValue(float newValue) { argument
77 mSeekBar.setProgress((int) newValue);
/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);

Completed in 383 milliseconds

12345678