HomeSort by relevance Sort by last modified time
    Searched refs:m_treeScope (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheetList.cpp 35 : 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);
StyleSheetList.h 48 Document* document() { return m_treeScope ? &m_treeScope->document() : 0; }
62 RawPtrWillBeMember<TreeScope> m_treeScope;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeStyleSheetCollection.h 68 TreeScope& treeScope() const { return *m_treeScope; }
96 RawPtrWillBeMember<TreeScope> m_treeScope;
TreeScopeStyleSheetCollection.cpp 43 : m_treeScope(treeScope)
211 visitor->trace(m_treeScope);
Node.h 455 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 o
    [all...]
Node.cpp 268 , 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();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
TreeScopeEventContext.cpp 68 : m_treeScope(treeScope)
78 visitor->trace(m_treeScope);
TreeScopeEventContext.h 53 TreeScope& treeScope() const { return *m_treeScope; }
80 RawPtrWillBeMember<TreeScope> m_treeScope;
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.h 59 // m_treeScope will never be a dangling reference. See https://bugs.webkit.org/show_bug.cgi?id=99243
60 TreeScope* m_treeScope;
SVGFEImage.cpp 46 , m_treeScope(0)
53 , m_treeScope(&treeScope)
123 if (!m_treeScope)
125 Element* hrefElement = SVGURIReference::targetElementFromIRIString(m_href, *m_treeScope);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DOMSelection.h 114 RawPtrWillBeMember<const TreeScope> m_treeScope;
DOMSelection.cpp 65 , 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);

Completed in 1029 milliseconds