Home
last modified time | relevance | path

Searched refs:commonAncestorTreeScope (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DTreeScopeTest.cpp20 EXPECT_EQ(document.get(), document->commonAncestorTreeScope(*document)); in TEST()
25 EXPECT_EQ(shadowRoot.get(), shadowRoot->commonAncestorTreeScope(*shadowRoot)); in TEST()
39 EXPECT_EQ(document.get(), document->commonAncestorTreeScope(*shadowRoot)); in TEST()
40 EXPECT_EQ(document.get(), shadowRoot->commonAncestorTreeScope(*document)); in TEST()
60 EXPECT_EQ(document.get(), shadowRootA->commonAncestorTreeScope(*shadowRootB)); in TEST()
61 EXPECT_EQ(document.get(), shadowRootB->commonAncestorTreeScope(*shadowRootA)); in TEST()
87 EXPECT_EQ(document.get(), shadowRootA->commonAncestorTreeScope(*shadowRootB)); in TEST()
88 EXPECT_EQ(document.get(), shadowRootB->commonAncestorTreeScope(*shadowRootA)); in TEST()
95 EXPECT_EQ(0, document1->commonAncestorTreeScope(*document2)); in TEST()
96 EXPECT_EQ(0, document2->commonAncestorTreeScope(*document1)); in TEST()
DTreeScope.h131 const TreeScope* commonAncestorTreeScope(const TreeScope& other) const;
132 TreeScope* commonAncestorTreeScope(TreeScope& other);
DTreeScope.cpp434 const TreeScope* TreeScope::commonAncestorTreeScope(const TreeScope& other) const in commonAncestorTreeScope() function in blink::TreeScope
455 TreeScope* TreeScope::commonAncestorTreeScope(TreeScope& other) in commonAncestorTreeScope() function in blink::TreeScope
457 …return const_cast<TreeScope*>(static_cast<const TreeScope&>(*this).commonAncestorTreeScope(other)); in commonAncestorTreeScope()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DTextIterator.cpp326 …const TreeScope* commonAncestorTreeScope = startContainer->treeScope().commonAncestorTreeScope(end… in initialize() local
327 ASSERT(commonAncestorTreeScope); in initialize()
329 …reeScope* treeScope = &startContainer->treeScope(); treeScope != commonAncestorTreeScope; treeScop… in initialize()