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

1234

/external/guava/src/com/google/common/util/concurrent/
H A DValueFuture.java45 * @param newValue the value the future should hold.
49 public boolean set(V newValue) { argument
50 return super.set(newValue);
/external/webkit/WebKit/chromium/src/
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 DWebMutationEvent.cpp50 WebString WebMutationEvent::newValue() const function in class:WebKit::WebMutationEvent
52 return WebString(constUnwrap<MutationEvent>()->newValue());
H A DStorageEventDispatcherImpl.h50 const String& newValue, SecurityOrigin*,
H A DWebStorageEventDispatcherImpl.h47 const WebString& newValue, const WebString& origin,
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/srec/shared/include/
H A DESR_SessionTypeListener.h49 * @param newValue New property value
54 const void* oldValue, const void* newValue, VariableTypes variableType, void* data);
/external/webkit/WebCore/dom/
H A DMutationEvent.cpp34 const String& prevValue, const String& newValue,
39 , m_newValue(newValue)
46 const String& prevValue, const String& newValue,
56 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
45 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.h46 const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0)
48 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
52 const String& prevValue, const String& newValue,
57 String newValue() const { return m_newValue; } function in class:WebCore::MutationEvent
66 const String& prevValue, const String& newValue,
H A DMutationEvent.idl32 readonly attribute DOMString newValue;
41 in DOMString newValue,
/external/webkit/WebCore/storage/
H A DStorageEvent.cpp44 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea) argument
46 return adoptRef(new StorageEvent(type, key, oldValue, newValue, uri, storageArea));
49 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea) argument
53 , m_newValue(newValue)
59 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea) argument
68 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& uri, Storage* storageArea);
45 const String& newValue() const { return m_newValue; } function in class:WebCore::StorageEvent
49 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
58 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
H A DStorageEventDispatcher.h43 static void dispatch(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*, Frame* sourceFrame);
H A DStorageEventDispatcher.cpp41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) argument
62 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->sessionStorage()));
75 frames[i]->document()->enqueueStorageEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), frames[i]->domWindow()->localStorage()));
/external/webkit/WebKit/chromium/public/
H A DWebStorageArea.h69 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, Result& result, WebString& oldValue) argument
72 setItem(key, newValue, url, quotaException, oldValue);
76 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL& url, bool& quotaException, WebString& oldValue) argument
79 setItem(key, newValue, url, result, oldValue);
H A DWebStorageEventDispatcher.h50 const WebString& newValue, const WebString& origin,
H A DWebMutationEvent.h51 WEBKIT_API WebString newValue() const;
/external/guava/src/com/google/common/collect/
H A DForwardingConcurrentMap.java51 public boolean replace(K key, V oldValue, V newValue) { argument
52 return delegate().replace(key, oldValue, newValue);
/external/webkit/WebCore/inspector/front-end/
H A DSettings.js88 _set: function(propertyName, newValue)
90 this._store[propertyName] = newValue;
/external/chromium/third_party/icu/source/i18n/
H A Dunum.cpp478 int32_t newValue)
484 df->setParseIntegerOnly(newValue!=0);
488 df->setGroupingUsed(newValue!=0);
492 df->setDecimalSeparatorAlwaysShown(newValue!=0);
496 df->setMaximumIntegerDigits(newValue);
500 df->setMinimumIntegerDigits(newValue);
504 df->setMinimumIntegerDigits(newValue);
505 df->setMaximumIntegerDigits(newValue);
509 df->setMaximumFractionDigits(newValue);
513 df->setMinimumFractionDigits(newValue);
476 unum_setAttribute( UNumberFormat* fmt, UNumberFormatAttribute attr, int32_t newValue) argument
585 unum_setDoubleAttribute( UNumberFormat* fmt, UNumberFormatAttribute attr, double newValue) argument
664 unum_setTextAttribute( UNumberFormat* fmt, UNumberFormatTextAttribute tag, const UChar* newValue, int32_t newValueLength, UErrorCode *status) argument
[all...]
H A Dwinnmfmt.h108 * @param newValue the new value to be set.
112 virtual void setMaximumFractionDigits(int32_t newValue);
120 * @param newValue the new value to be set.
124 virtual void setMinimumFractionDigits(int32_t newValue);
/external/icu4c/i18n/
H A Dunum.cpp481 int32_t newValue)
487 df->setParseIntegerOnly(newValue!=0);
491 df->setGroupingUsed(newValue!=0);
495 df->setDecimalSeparatorAlwaysShown(newValue!=0);
499 df->setMaximumIntegerDigits(newValue);
503 df->setMinimumIntegerDigits(newValue);
507 df->setMinimumIntegerDigits(newValue);
508 df->setMaximumIntegerDigits(newValue);
512 df->setMaximumFractionDigits(newValue);
516 df->setMinimumFractionDigits(newValue);
479 unum_setAttribute( UNumberFormat* fmt, UNumberFormatAttribute attr, int32_t newValue) argument
588 unum_setDoubleAttribute( UNumberFormat* fmt, UNumberFormatAttribute attr, double newValue) argument
667 unum_setTextAttribute( UNumberFormat* fmt, UNumberFormatTextAttribute tag, const UChar* newValue, int32_t newValueLength, UErrorCode *status) argument
[all...]
H A Dwinnmfmt.h108 * @param newValue the new value to be set.
112 virtual void setMaximumFractionDigits(int32_t newValue);
120 * @param newValue the new value to be set.
124 virtual void setMinimumFractionDigits(int32_t newValue);
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/GetSet/
H A Dgetset-003.js47 obj.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
77 Object.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
111 TestObject.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
H A Dgetset-004.js47 obj.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
77 Object.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
111 TestObject.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});

Completed in 584 milliseconds

1234