Searched refs:parentTreeScope (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScope.cpp108 return parentTreeScope();
391 for (current = this; current; current = current->parentTreeScope())
393 for (current = &otherScope; current; current = current->parentTreeScope())
428 for (const TreeScope* tree = this; tree; tree = tree->parentTreeScope())
432 for (const TreeScope* tree = &other; tree; tree = tree->parentTreeScope())
505 for (const TreeScope* current = &scope; current; current = current->parentTreeScope()) {
H A DTreeScope.h53 TreeScope* parentTreeScope() const { return m_parentTreeScope; } function in class:WebCore::TreeScope
H A DDocument.cpp541 ASSERT(!parentTreeScope());
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.h114 Node* parentTreeScope(Node*, ExceptionState&);
H A DInternals.idl62 [RaisesException] Node parentTreeScope(Node node);
H A DInternals.cpp375 Node* Internals::parentTreeScope(Node* node, ExceptionState& exceptionState) function in class:WebCore::Internals
381 const TreeScope* parentTreeScope = node->treeScope().parentTreeScope(); local
382 return parentTreeScope ? &parentTreeScope->rootNode() : 0;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp328 for (const TreeScope* treeScope = &startContainer->treeScope(); treeScope != commonAncestorTreeScope; treeScope = treeScope->parentTreeScope())

Completed in 118 milliseconds