oldValue          640 Source/bindings/v8/V8Binding.cpp void moveEventListenerToNewWrapper(v8::Handle<v8::Object> object, EventListener* oldValue, v8::Local<v8::Value> newValue, int arrayIndex, v8::Isolate* isolate)
oldValue          642 Source/bindings/v8/V8Binding.cpp     if (oldValue) {
oldValue          643 Source/bindings/v8/V8Binding.cpp         V8AbstractEventListener* oldListener = V8AbstractEventListener::cast(oldValue);
oldValue          708 Source/bindings/v8/V8Binding.h void moveEventListenerToNewWrapper(v8::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex, v8::Isolate*);
oldValue          206 Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp void V8CustomElementLifecycleCallbacks::attributeChanged(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
oldValue          231 Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp         oldValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, oldValue)),
oldValue           63 Source/bindings/v8/V8CustomElementLifecycleCallbacks.h     virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;
oldValue           67 Source/core/css/PropertySetCSSStyleDeclaration.cpp         AtomicString oldValue;
oldValue           69 Source/core/css/PropertySetCSSStyleDeclaration.cpp             oldValue = s_currentDecl->parentElement()->getAttribute(HTMLNames::styleAttr);
oldValue           72 Source/core/css/PropertySetCSSStyleDeclaration.cpp             AtomicString requestedOldValue = m_mutationRecipients->isOldValueRequested() ? oldValue : nullAtom;
oldValue           67 Source/core/dom/CharacterData.h     void didModifyData(const String& oldValue);
oldValue         2851 Source/core/dom/Element.cpp void Element::willModifyAttribute(const QualifiedName& name, const AtomicString& oldValue, const AtomicString& newValue)
oldValue         2854 Source/core/dom/Element.cpp         updateId(oldValue, newValue);
oldValue         2856 Source/core/dom/Element.cpp         updateName(oldValue, newValue);
oldValue         2860 Source/core/dom/Element.cpp             updateLabel(scope, oldValue, newValue);
oldValue         2863 Source/core/dom/Element.cpp     if (oldValue != newValue) {
oldValue         2868 Source/core/dom/Element.cpp             CustomElement::attributeDidChange(this, name.localName(), oldValue, newValue);
oldValue         2872 Source/core/dom/Element.cpp         recipients->enqueueMutationRecord(MutationRecord::createAttributes(this, name, oldValue));
oldValue         2874 Source/core/dom/Element.cpp     InspectorInstrumentation::willModifyDOMAttr(this, oldValue, newValue);
oldValue          595 Source/core/dom/Element.h     void willModifyAttribute(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue);
oldValue           77 Source/core/dom/MutationObserverInterestGroup.cpp             if (mutation->oldValue().isNull())
oldValue           73 Source/core/dom/MutationRecord.cpp     RecordWithEmptyNodeLists(PassRefPtr<Node> target, const String& oldValue)
oldValue           75 Source/core/dom/MutationRecord.cpp         , m_oldValue(oldValue)
oldValue          100 Source/core/dom/MutationRecord.cpp     AttributesRecord(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue)
oldValue          101 Source/core/dom/MutationRecord.cpp         : RecordWithEmptyNodeLists(target, oldValue)
oldValue          118 Source/core/dom/MutationRecord.cpp     CharacterDataRecord(PassRefPtr<Node> target, const String& oldValue)
oldValue          119 Source/core/dom/MutationRecord.cpp         : RecordWithEmptyNodeLists(target, oldValue)
oldValue          174 Source/core/dom/MutationRecord.cpp PassRefPtr<MutationRecord> MutationRecord::createAttributes(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue)
oldValue          176 Source/core/dom/MutationRecord.cpp     return adoptRef(new AttributesRecord(target, name, oldValue));
oldValue          179 Source/core/dom/MutationRecord.cpp PassRefPtr<MutationRecord> MutationRecord::createCharacterData(PassRefPtr<Node> target, const String& oldValue)
oldValue          181 Source/core/dom/MutationRecord.cpp     return adoptRef(new CharacterDataRecord(target, oldValue));
oldValue           48 Source/core/dom/MutationRecord.h     static PassRefPtr<MutationRecord> createAttributes(PassRefPtr<Node> target, const QualifiedName&, const AtomicString& oldValue);
oldValue           49 Source/core/dom/MutationRecord.h     static PassRefPtr<MutationRecord> createCharacterData(PassRefPtr<Node> target, const String& oldValue);
oldValue           70 Source/core/dom/MutationRecord.h     virtual String oldValue() { return String(); }
oldValue          106 Source/core/dom/custom/CustomElement.cpp void CustomElement::attributeDidChange(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
oldValue          109 Source/core/dom/custom/CustomElement.cpp     CustomElementScheduler::scheduleAttributeChangedCallback(element->customElementDefinition()->callbacks(), element, name, oldValue, newValue);
oldValue           67 Source/core/dom/custom/CustomElement.h     static void attributeDidChange(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
oldValue           72 Source/core/dom/custom/CustomElementCallbackInvocation.cpp     AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
oldValue           82 Source/core/dom/custom/CustomElementCallbackInvocation.cpp AttributeChangedInvocation::AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
oldValue           85 Source/core/dom/custom/CustomElementCallbackInvocation.cpp     , m_oldValue(oldValue)
oldValue          129 Source/core/dom/custom/CustomElementCallbackInvocation.cpp PassOwnPtr<CustomElementCallbackInvocation> CustomElementCallbackInvocation::createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
oldValue          131 Source/core/dom/custom/CustomElementCallbackInvocation.cpp     return adoptPtr(new AttributeChangedInvocation(callbacks, name, oldValue, newValue));
oldValue           47 Source/core/dom/custom/CustomElementCallbackInvocation.h     static PassOwnPtr<CustomElementCallbackInvocation> createAttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
oldValue           58 Source/core/dom/custom/CustomElementLifecycleCallbacks.h     virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) = 0;
oldValue           60 Source/core/dom/custom/CustomElementScheduler.cpp void CustomElementScheduler::scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, PassRefPtr<Element> element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
oldValue           66 Source/core/dom/custom/CustomElementScheduler.cpp     queue.append(CustomElementCallbackInvocation::createAttributeChangedInvocation(callbacks, name, oldValue, newValue));
oldValue           51 Source/core/dom/custom/CustomElementScheduler.h     static void scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
oldValue           93 Source/core/html/HTMLDetailsElement.cpp         bool oldValue = m_isOpen;
oldValue           95 Source/core/html/HTMLDetailsElement.cpp         if (m_isOpen == oldValue)
oldValue          181 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp     String oldValue = input->value();
oldValue          184 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp     if ((oldValue.isEmpty() && newValue.isEmpty()) || oldValue == newValue) {
oldValue           58 Source/core/html/shadow/SliderThumbElement.cpp     const Decimal oldValue = parseToDecimalForNumberType(element->value(), stepRange.defaultValue());
oldValue           59 Source/core/html/shadow/SliderThumbElement.cpp     return stepRange.proportionFromValue(stepRange.clampValue(oldValue));
oldValue         1860 Source/core/inspector/InspectorDOMAgent.cpp void InspectorDOMAgent::willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicString& newValue)
oldValue         1862 Source/core/inspector/InspectorDOMAgent.cpp     m_suppressAttributeModifiedEvent = (oldValue == newValue);
oldValue          166 Source/core/inspector/InspectorDOMAgent.h     void willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicString& newValue);
oldValue          176 Source/core/inspector/InspectorDOMStorageAgent.cpp void InspectorDOMStorageAgent::didDispatchDOMStorageEvent(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin)
oldValue          187 Source/core/inspector/InspectorDOMStorageAgent.cpp     else if (oldValue.isNull())
oldValue          190 Source/core/inspector/InspectorDOMStorageAgent.cpp         m_frontend->domstorage()->domStorageItemUpdated(id, key, oldValue, newValue);
oldValue           68 Source/core/inspector/InspectorDOMStorageAgent.h     void didDispatchDOMStorageEvent(const String& key, const String& oldValue, const String& newValue, StorageType, SecurityOrigin*);
oldValue          143 Source/core/storage/StorageArea.cpp void StorageArea::dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess)
oldValue          151 Source/core/storage/StorageArea.cpp                 frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage));
oldValue          153 Source/core/storage/StorageArea.cpp         InspectorInstrumentation::didDispatchDOMStorageEvent(*it, key, oldValue, newValue, LocalStorage, securityOrigin);
oldValue          170 Source/core/storage/StorageArea.cpp void StorageArea::dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue, SecurityOrigin* securityOrigin, const KURL& pageURL, const blink::WebStorageNamespace& sessionNamespace, blink::WebStorageArea* sourceAreaInstance, bool originatedInProcess)
oldValue          179 Source/core/storage/StorageArea.cpp             frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage));
oldValue          181 Source/core/storage/StorageArea.cpp     InspectorInstrumentation::didDispatchDOMStorageEvent(page, key, oldValue, newValue, SessionStorage, securityOrigin);
oldValue           70 Source/core/storage/StorageArea.h     static void dispatchLocalStorageEvent(const String& key, const String& oldValue, const String& newValue,
oldValue           72 Source/core/storage/StorageArea.h     static void dispatchSessionStorageEvent(const String& key, const String& oldValue, const String& newValue,
oldValue           51 Source/core/storage/StorageEvent.cpp PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
oldValue           53 Source/core/storage/StorageEvent.cpp     return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
oldValue           61 Source/core/storage/StorageEvent.cpp StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
oldValue           64 Source/core/storage/StorageEvent.cpp     , m_oldValue(oldValue)
oldValue           75 Source/core/storage/StorageEvent.cpp     , m_oldValue(initializer.oldValue)
oldValue           83 Source/core/storage/StorageEvent.cpp void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
oldValue           91 Source/core/storage/StorageEvent.cpp     m_oldValue = oldValue;
oldValue           41 Source/core/storage/StorageEvent.h     String oldValue;
oldValue           50 Source/core/storage/StorageEvent.h     static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
oldValue           55 Source/core/storage/StorageEvent.h     const String& oldValue() const { return m_oldValue; }
oldValue           61 Source/core/storage/StorageEvent.h     void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
oldValue           72 Source/core/storage/StorageEvent.h     StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
oldValue           44 Source/web/WebStorageEventDispatcherImpl.cpp         const WebString& key, const WebString& oldValue,
oldValue           51 Source/web/WebStorageEventDispatcherImpl.cpp             key, oldValue, newValue, securityOrigin.get(), pageURL,
oldValue           56 Source/web/WebStorageEventDispatcherImpl.cpp         const WebString& key, const WebString& oldValue,
oldValue           63 Source/web/WebStorageEventDispatcherImpl.cpp             key, oldValue, newValue, securityOrigin.get(), pageURL,
oldValue           92 public/platform/WebStorageArea.h     virtual void setItem(const WebString& key, const WebString& newValue, const WebURL&, Result&, WebString& oldValue) { }
oldValue           93 public/platform/WebStorageArea.h     virtual void removeItem(const WebString& key, const WebURL& pageUrl, WebString& oldValue)  { }
oldValue           46 public/web/WebStorageEventDispatcher.h             const WebString& key, const WebString& oldValue,
oldValue           53 public/web/WebStorageEventDispatcher.h             const WebString& key, const WebString& oldValue,