Searched defs:oldValue (Results 1 - 25 of 96) sorted by relevance

1234

/external/chromium_org/v8/test/webkit/fast/js/
H A Ddate-preserve-milliseconds.js31 var oldValue = d.getMilliseconds(); variable
34 shouldBe("d.getMilliseconds()", oldValue.toString());
36 shouldBe("d.getMilliseconds()", oldValue.toString());
38 shouldBe("d.getMilliseconds()", oldValue.toString());
40 shouldBe("d.getMilliseconds()", oldValue.toString());
42 shouldBe("d.getMilliseconds()", oldValue.toString());
44 shouldBe("d.getMilliseconds()", oldValue.toString());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMutationRecord.h48 static PassRefPtr<MutationRecord> createAttributes(PassRefPtr<Node> target, const QualifiedName&, const AtomicString& oldValue);
49 static PassRefPtr<MutationRecord> createCharacterData(PassRefPtr<Node> target, const String& oldValue);
70 virtual String oldValue() { return String(); } function in class:WebCore::MutationRecord
H A DMutationRecord.cpp73 RecordWithEmptyNodeLists(PassRefPtr<Node> target, const String& oldValue) argument
75 , m_oldValue(oldValue)
81 virtual String oldValue() OVERRIDE { return m_oldValue; }
100 AttributesRecord(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) argument
101 : RecordWithEmptyNodeLists(target, oldValue)
118 CharacterDataRecord(PassRefPtr<Node> target, const String& oldValue) argument
119 : RecordWithEmptyNodeLists(target, oldValue)
144 virtual String oldValue() OVERRIDE { return String(); }
174 PassRefPtr<MutationRecord> MutationRecord::createAttributes(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) argument
176 return adoptRef(new AttributesRecord(target, name, oldValue));
179 createCharacterData(PassRefPtr<Node> target, const String& oldValue) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageEvent.h40 String oldValue; 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);
54 const String& oldValue() const { return m_oldValue; } function in class:WebCore::StorageEvent
60 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
69 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
H A DStorageEvent.cpp52 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
54 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
62 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) argument
65 , m_oldValue(oldValue)
76 , m_oldValue(initializer.oldValue)
84 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
92 m_oldValue = oldValue;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebStorageEventDispatcherImpl.cpp44 const WebString& key, const WebString& oldValue,
51 key, oldValue, newValue, securityOrigin.get(), pageURL,
56 const WebString& key, const WebString& oldValue,
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
H A DStorageAreaProxy.cpp156 void StorageAreaProxy::dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, argument
165 frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage));
167 InspectorInstrumentation::didDispatchDOMStorageEvent(*it, key, oldValue, newValue, LocalStorage, securityOrigin);
184 void StorageAreaProxy::dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, argument
195 frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage));
197 InspectorInstrumentation::didDispatchDOMStorageEvent(page, key, oldValue, newValue, SessionStorage, securityOrigin);
/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);
/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
H A DConcurrentHashMap.java73 public boolean replace(K key, V oldValue, V newValue) { argument
74 if (oldValue == null || newValue == null) {
76 } else if (containsKey(key) && get(key).equals(oldValue)) {
/external/webrtc/src/system_wrappers/source/
H A Datomic32_win.cc60 const LONG oldValue = InterlockedCompareExchange( local
65 return (oldValue == compareValue);
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementCallbackInvocation.cpp91 AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
101 AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) argument
104 , m_oldValue(oldValue)
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));
H A DCustomElementCallbackScheduler.cpp40 void CustomElementCallbackScheduler::scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, PassRefPtr<Element> element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) argument
46 queue->append(CustomElementCallbackInvocation::createAttributeChangedInvocation(callbacks, name, oldValue, newValue));
H A DCustomElement.cpp116 void CustomElement::attributeDidChange(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) argument
119 CustomElementCallbackScheduler::scheduleAttributeChangedCallback(definitionFor(element)->callbacks(), element, name, oldValue, newValue);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDetailsElement.cpp86 bool oldValue = m_isOpen; local
88 if (oldValue != m_isOpen)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs96 public static string replace( string str, char oldValue, char newValue ) argument
98 int index = str.IndexOf( oldValue );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs97 public static string replace(this string str, char oldValue, char newValue) argument
99 return str.Replace(oldValue, newValue);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebStorageArea.h91 virtual void setItem(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { } argument
92 virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebString& oldValue) { } argument
/external/guava/guava/src/com/google/common/cache/
H A DCacheLoader.java69 * @param oldValue the non-null old value corresponding to {@code key}
75 public ListenableFuture<V> reload(K key, V oldValue) throws Exception { argument
/external/srec/portable/src/
H A DPANSIFileSystemImpl.c160 LCHAR* oldValue; local
162 CHKLOG(rc, PHashTableGetValue(impl->directoryMap, key, (void **)&oldValue));
163 if (LSTRCMP(oldValue, value) != 0)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8CustomElementLifecycleCallbacks.cpp200 void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) argument
222 oldValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, oldValue)),
H A DV8Utilities.cpp158 void transferHiddenDependency(v8::Handle<v8::Object> object, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex, v8::Isolate* isolate) argument
160 if (oldValue) {
161 V8AbstractEventListener* oldListener = V8AbstractEventListener::cast(oldValue);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dchashtst.c341 int32_t oldValue = local
345 key, u_errorName(status), oldValue);
346 } else if (oldValue != expectedOldValue) {
348 key, oldValue, expectedOldValue);
351 key, value, oldValue);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Datomicops-internals-macosx.h76 int64_t oldValue, int64_t newValue, int64_t *theValue) {
89 int64_t oldValue, int64_t newValue, int64_t *theValue) {
90 int64_t prev = OSAtomicCompareAndSwap64(oldValue, newValue, theValue);
75 OSAtomicCompareAndSwap64( int64_t oldValue, int64_t newValue, int64_t *theValue) argument
88 OSAtomicCompareAndSwap64Barrier( int64_t oldValue, int64_t newValue, int64_t *theValue) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Datomicops-internals-macosx.h76 int64_t oldValue, int64_t newValue, int64_t *theValue) {
89 int64_t oldValue, int64_t newValue, int64_t *theValue) {
90 int64_t prev = OSAtomicCompareAndSwap64(oldValue, newValue, theValue);
75 OSAtomicCompareAndSwap64( int64_t oldValue, int64_t newValue, int64_t *theValue) argument
88 OSAtomicCompareAndSwap64Barrier( int64_t oldValue, int64_t newValue, int64_t *theValue) argument

Completed in 9264 milliseconds

1234