Searched defs:treeScope (Results 1 - 13 of 13) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/page/ |
H A D | DOMSelection.h | 52 static PassRefPtr<DOMSelection> create(const TreeScope* treeScope) { return adoptRef(new DOMSelection(treeScope)); } argument
|
H A D | DOMSelection.cpp | 61 DOMSelection::DOMSelection(const TreeScope* treeScope) argument 62 : DOMWindowProperty(treeScope->rootNode()->document()->frame()) 63 , m_treeScope(treeScope)
|
H A D | FocusController.cpp | 66 FocusNavigationScope::FocusNavigationScope(TreeScope* treeScope) argument 67 : m_rootTreeScope(treeScope) 69 ASSERT(treeScope); 70 ASSERT(!treeScope->rootNode()->isShadowRoot() || toShadowRoot(treeScope->rootNode())->isYoungest()); 96 return FocusNavigationScope(root->treeScope());
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | CharacterData.h | 54 CharacterData(TreeScope* treeScope, const String& text, ConstructionType type) argument 55 : Node(treeScope, type)
|
H A D | Notation.cpp | 26 Notation::Notation(TreeScope* treeScope, const String& name, const String& publicId, const String& systemId) argument 27 : ContainerNode(treeScope)
|
H A D | Text.h | 60 Text(TreeScope* treeScope, const String& data, ConstructionType type) argument 61 : CharacterData(treeScope, data, type)
|
H A D | ContainerNode.h | 188 inline ContainerNode::ContainerNode(TreeScope* treeScope, ConstructionType type) argument 189 : Node(treeScope, type)
|
H A D | StyleSheetCollection.cpp | 53 StyleSheetCollection::StyleSheetCollection(TreeScope* treeScope) argument 54 : m_treeScope(treeScope)
|
H A D | Node.h | 275 bool isTreeScope() const { return treeScope()->rootNode() == this; } 495 TreeScope* treeScope() const { return m_treeScope; } function in class:WebCore::Node 784 Node(TreeScope* treeScope, ConstructionType type) argument 787 , m_treeScope(treeScope) 816 Document* documentInternal() const { return treeScope()->documentScope(); }
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
H A D | ScopedStyleResolver.h | 58 const TreeScope* treeScope() const { return m_scopingNode->treeScope(); } function in class:WebCore::ScopedStyleResolver
|
H A D | ScopedStyleResolver.cpp | 148 TreeScope* treeScope = element->treeScope(); local 149 bool applyAuthorStyles = treeScope->applyAuthorStyles(); 152 if (scopedResolver->treeScope() == treeScope || (applyAuthorStyles && scopedResolver->treeScope() == document))
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
H A D | ElementRuleCollector.cpp | 103 TreeScope* treeScope = element->treeScope(); local 110 if (!scopingNode || treeScope == scopingNode->treeScope())
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
H A D | VisibleSelection.cpp | 470 TreeScope* treeScope = startContainerNode->treeScope(); local 472 ASSERT(currentPosition.containerNode()->treeScope() != treeScope); 474 if (Node* ancestor = treeScope->ancestorInThisScope(currentPosition.containerNode())) { 480 if (Node* lastChild = treeScope->rootNode()->lastChild()) 488 TreeScope* treeScope = endContainerNode->treeScope(); local 490 ASSERT(currentPosition.containerNode()->treeScope() != treeScope); [all...] |
Completed in 465 milliseconds