Searched refs:m_treeScope (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleSheetList.cpp35 : m_treeScope(treeScope)
46 if (!m_treeScope)
49 return document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope);
55 m_detachedStyleSheets = document()->styleEngine()->styleSheetsForStyleSheetList(*m_treeScope);
56 m_treeScope = nullptr;
74 if (!m_treeScope)
84 Element* element = m_treeScope->getElementById(name);
98 visitor->trace(m_treeScope);
H A DStyleSheetList.h48 Document* document() { return m_treeScope ? &m_treeScope->document() : 0; }
62 RawPtrWillBeMember<TreeScope> m_treeScope; member in class:blink::StyleSheetList
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScopeStyleSheetCollection.h68 TreeScope& treeScope() const { return *m_treeScope; }
96 RawPtrWillBeMember<TreeScope> m_treeScope; member in class:blink::TreeScopeStyleSheetCollection
H A DTreeScopeStyleSheetCollection.cpp43 : m_treeScope(treeScope)
211 visitor->trace(m_treeScope);
H A DNode.h455 ASSERT(m_treeScope);
456 return *m_treeScope;
763 void setTreeScope(TreeScope* scope) { m_treeScope = scope; }
766 // - in the destruction of Document or ShadowRoot where m_treeScope is set to null or
767 // - in the Node constructor called by these two classes where m_treeScope is set by TreeScope ctor.
768 bool isTreeScopeInitialized() const { return m_treeScope; }
809 RawPtrWillBeMember<TreeScope> m_treeScope; member in class:blink::Node
H A DNode.cpp268 , m_treeScope(treeScope)
272 ASSERT(m_treeScope || type == CreateDocument || type == CreateShadowRoot);
274 if (m_treeScope)
275 m_treeScope->guardRef();
308 if (m_treeScope)
309 m_treeScope->guardDeref();
2446 visitor->trace(m_treeScope);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTreeScopeEventContext.cpp68 : m_treeScope(treeScope)
78 visitor->trace(m_treeScope);
H A DTreeScopeEventContext.h53 TreeScope& treeScope() const { return *m_treeScope; }
80 RawPtrWillBeMember<TreeScope> m_treeScope; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DDOMSelection.h114 RawPtrWillBeMember<const TreeScope> m_treeScope; member in class:blink::FINAL
H A DDOMSelection.cpp65 , m_treeScope(treeScope)
71 m_treeScope = nullptr;
520 Node* adjustedNode = m_treeScope->ancestorInThisScope(containerNode);
538 Node* adjustedNode = m_treeScope->ancestorInThisScope(containerNode);
559 if (m_treeScope)
560 m_treeScope->document().addConsoleMessage(ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, message));
565 visitor->trace(m_treeScope);
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.cpp46 , m_treeScope(0)
53 , m_treeScope(&treeScope)
123 if (!m_treeScope)
125 Element* hrefElement = SVGURIReference::targetElementFromIRIString(m_href, *m_treeScope);
H A DSVGFEImage.h59 // m_treeScope will never be a dangling reference. See https://bugs.webkit.org/show_bug.cgi?id=99243
60 TreeScope* m_treeScope; member in class:blink::FINAL

Completed in 254 milliseconds