Searched refs:oldDocument (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DLiveNodeListBase.cpp47 void LiveNodeListBase::didMoveToDocument(Document& oldDocument, Document& newDocument) argument
49 invalidateCache(&oldDocument);
50 oldDocument.unregisterNodeList(this);
H A DTreeScopeAdopter.cpp49 Document& oldDocument = oldScope().document(); local
51 bool willMoveToNewDocument = oldDocument != newDocument;
52 AXObjectCache* axObjectCache = oldDocument.existingAXObjectCache();
54 oldDocument.incDOMTreeVersion();
62 moveNodeToNewDocument(*node, oldDocument, newDocument);
81 moveTreeToNewDocument(*shadow, oldDocument, newDocument);
90 void TreeScopeAdopter::moveTreeToNewDocument(Node& root, Document& oldDocument, Document& newDocument) const argument
92 ASSERT(oldDocument != newDocument);
94 moveNodeToNewDocument(*node, oldDocument, newDocument);
99 moveTreeToNewDocument(*attrs[i], oldDocument, newDocumen
111 ensureDidMoveToNewDocumentWasCalled(Document& oldDocument) argument
130 moveNodeToNewDocument(Node& node, Document& oldDocument, Document& newDocument) const argument
[all...]
H A DTreeScopeAdopter.h51 void moveTreeToNewDocument(Node&, Document& oldDocument, Document& newDocument) const;
52 void moveNodeToNewDocument(Node&, Document& oldDocument, Document& newDocument) const;
H A DLiveNodeList.h48 virtual void invalidateCache(Document* oldDocument = 0) const OVERRIDE FINAL;
H A DLiveNodeListBase.h66 void didMoveToDocument(Document& oldDocument, Document& newDocument);
72 virtual void invalidateCache(Document* oldDocument = 0) const = 0;
H A DNodeListsNodeData.h186 void adoptDocument(Document& oldDocument, Document& newDocument) argument
188 ASSERT(oldDocument != newDocument);
193 list->didMoveToDocument(oldDocument, newDocument);
200 list->didMoveToDocument(oldDocument, newDocument);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTemplateElement.cpp77 void HTMLTemplateElement::didMoveToNewDocument(Document& oldDocument) argument
79 HTMLElement::didMoveToNewDocument(oldDocument);
H A DHTMLTemplateElement.h52 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
H A DHTMLCollection.h45 virtual void invalidateCache(Document* oldDocument = 0) const OVERRIDE;
130 void invalidateIdNameCacheMaps(Document* oldDocument = 0) const
138 unregisterIdNameCacheFromDocument(oldDocument ? *oldDocument : document());
H A DHTMLMarqueeElement.h52 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
H A DHTMLScriptElement.cpp73 void HTMLScriptElement::didMoveToNewDocument(Document& oldDocument) argument
76 oldDocument.scriptRunner()->movePendingAsyncScript(contextDocument->scriptRunner(), m_loader.get());
77 HTMLElement::didMoveToNewDocument(oldDocument);
H A DHTMLFormControlsCollection.h63 virtual void invalidateCache(Document* oldDocument = 0) const OVERRIDE;
H A DHTMLScriptElement.h56 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
H A DHTMLMarqueeElement.cpp59 void HTMLMarqueeElement::didMoveToNewDocument(Document& oldDocument) argument
62 HTMLElement::didMoveToNewDocument(oldDocument);
H A DFormAssociatedElement.h101 void didMoveToNewDocument(Document& oldDocument);
H A DHTMLVideoElement.h107 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
H A DHTMLObjectElement.cpp430 void HTMLObjectElement::didMoveToNewDocument(Document& oldDocument) argument
432 FormAssociatedElement::didMoveToNewDocument(oldDocument);
433 HTMLPlugInElement::didMoveToNewDocument(oldDocument);
H A DHTMLFormControlsCollection.cpp105 void HTMLFormControlsCollection::invalidateCache(Document* oldDocument) const
107 HTMLCollection::invalidateCache(oldDocument);
H A DHTMLVideoElement.cpp260 void HTMLVideoElement::didMoveToNewDocument(Document& oldDocument) argument
264 HTMLMediaElement::didMoveToNewDocument(oldDocument);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessor.cpp77 RefPtrWillBeRawPtr<Document> oldDocument = frame->document(); local
85 if (oldDocument) {
86 result->setTransformSourceDocument(oldDocument.get());
87 result->updateSecurityOrigin(oldDocument->securityOrigin());
88 result->setCookieURL(oldDocument->cookieURL());
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGScriptElement.cpp126 void SVGScriptElement::didMoveToNewDocument(Document& oldDocument) argument
129 oldDocument.scriptRunner()->movePendingAsyncScript(contextDocument->scriptRunner(), m_loader.get());
130 SVGElement::didMoveToNewDocument(oldDocument);
H A DSVGImageElement.h70 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
H A DSVGImageElement.cpp207 void SVGImageElement::didMoveToNewDocument(Document& oldDocument) argument
210 SVGGraphicsElement::didMoveToNewDocument(oldDocument);
H A DSVGScriptElement.h58 virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFocusController.cpp681 RefPtrWillBeRawPtr<Document> oldDocument = oldFocusedFrame ? oldFocusedFrame->document() : 0; local
683 Element* oldFocusedElement = oldDocument ? oldDocument->focusedElement() : 0;
699 if (newDocument && oldDocument == newDocument && newDocument->focusedElement() == element)
704 if (oldDocument && oldDocument != newDocument)
705 oldDocument->setFocusedElement(nullptr);

Completed in 164 milliseconds

12