HomeSort by relevance Sort by last modified time
    Searched refs:treeScope (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/events/
TreeScopeEventContext.cpp 45 TreeScope& treeScope = path[i].treeScopeEventContext().treeScope();
46 if (treeScope.rootNode().isShadowRoot() && toShadowRoot(treeScope).type() == ShadowRoot::AuthorShadowRoot)
62 PassRefPtrWillBeRawPtr<TreeScopeEventContext> TreeScopeEventContext::create(TreeScope& treeScope)
64 return adoptRefWillBeNoop(new TreeScopeEventContext(treeScope));
67 TreeScopeEventContext::TreeScopeEventContext(TreeScope& treeScope)
    [all...]
EventPath.cpp 145 WillBeHeapHashMap<RawPtrWillBeMember<const TreeScope>, RawPtrWillBeMember<TreeScopeEventContext> > treeScopeEventContextMap;
147 treeScopeEventContextMap.add(&m_treeScopeEventContexts[i]->treeScope(), m_treeScopeEventContexts[i].get());
153 TreeScope* parent = treeScopeEventContext->treeScope().olderShadowRootOrParentTreeScope();
166 TreeScopeEventContext* EventPath::ensureTreeScopeEventContext(Node* currentTarget, TreeScope* treeScope, TreeScopeEventContextMap& treeScopeEventContextMap)
168 if (!treeScope)
173 TreeScopeEventContextMap::AddResult addResult = treeScopeEventContextMap.add(treeScope, nullptr);
176 addResult.storedValue->value = TreeScopeEventContext::create(*treeScope);
180 TreeScopeEventContext* parentTreeScopeEventContext = ensureTreeScopeEventContext(0, treeScope->olderShadowRootOrParentTreeScope(), treeScopeEventContextMap)
    [all...]
TreeScopeEventContext.h 31 #include "core/dom/TreeScope.h"
45 class TreeScope;
50 static PassRefPtrWillBeRawPtr<TreeScopeEventContext> create(TreeScope&);
53 TreeScope& treeScope() const { return *m_treeScope; }
74 TreeScopeEventContext(TreeScope&);
80 RawPtrWillBeMember<TreeScope> m_treeScope;
95 return target.toNode() && !target.toNode()->isSVGElement() && !target.toNode()->treeScope().isInclusiveOlderSiblingShadowRootOrAncestorTreeScopeOf(treeScope());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDataListElement.cpp 63 treeScope().idTargetObserverRegistry().notifyObservers(getIdAttribute());
68 treeScope().idTargetObserverRegistry().notifyObservers(getIdAttribute());
73 treeScope().idTargetObserverRegistry().notifyObservers(getIdAttribute());
HTMLMapElement.cpp 100 treeScope().removeImageMap(this);
106 treeScope().addImageMap(this);
122 treeScope().addImageMap(this);
129 treeScope().removeImageMap(this);
HTMLLabelElement.cpp 73 if (Element* element = treeScope().getElementById(controlId)) {
225 void HTMLLabelElement::updateLabel(TreeScope& scope, const AtomicString& oldForAttributeValue, const AtomicString& newForAttributeValue)
242 TreeScope& scope = treeScope();
254 TreeScope& scope = insertionPoint->treeScope();
255 if (scope == treeScope() && scope.shouldCacheLabelsByForAttribute())
263 if (insertionPoint->isInTreeScope() && treeScope() == document()) {
264 TreeScope& treeScope = insertionPoint->treeScope()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentStyleSheetCollection.h 37 class TreeScope;
43 static PassOwnPtrWillBeRawPtr<DocumentStyleSheetCollection> create(TreeScope& treeScope)
45 return adoptPtrWillBeNoop(new DocumentStyleSheetCollection(treeScope));
57 explicit DocumentStyleSheetCollection(TreeScope&);
StyleEngine.cpp 103 const_cast<TreeScope&>((*it)->treeScope()).clearScopedStyleResolver();
118 void StyleEngine::insertTreeScopeInDocumentOrder(TreeScopeSet& treeScopes, TreeScope* treeScope)
121 treeScopes.add(treeScope);
124 if (treeScopes.contains(treeScope))
130 TreeScope* followingTreeScope = 0;
133 TreeScope* n = *it;
134 unsigned short position = n->comparePosition(*treeScope);
136 treeScopes.insertBefore(followingTreeScope, treeScope);
    [all...]
DocumentStyleSheetCollection.cpp 40 DocumentStyleSheetCollection::DocumentStyleSheetCollection(TreeScope& treeScope)
41 : TreeScopeStyleSheetCollection(treeScope)
43 ASSERT(treeScope.rootNode() == treeScope.rootNode().document());
110 styleResolver->resetAuthorStyle(treeScope());
StyleElement.cpp 82 void StyleElement::removedFromDocument(Document& document, Element* element, ContainerNode* scopingNode, TreeScope& treeScope)
87 document.styleEngine()->removeStyleSheetCandidateNode(element, scopingNode, treeScope);
106 TreeScope& treeScope = scopingNode ? scopingNode->treeScope() : element->treeScope();
107 document.styleEngine()->removeStyleSheetCandidateNode(element, scopingNode, treeScope);
CharacterData.h 55 CharacterData(TreeScope& treeScope, const String& text, ConstructionType type)
56 : Node(&treeScope, type)
Text.h 64 Text(TreeScope& treeScope, const String& data, ConstructionType type)
65 : CharacterData(treeScope, data, type) { }
TreeScopeStyleSheetCollection.h 34 #include "core/dom/TreeScope.h"
65 explicit TreeScopeStyleSheetCollection(TreeScope&);
67 Document& document() const { return treeScope().document(); }
68 TreeScope& treeScope() const { return *m_treeScope; }
96 RawPtrWillBeMember<TreeScope> m_treeScope;
TreeScopeAdopter.h 32 class TreeScope;
37 TreeScopeAdopter(Node& toAdopt, TreeScope& newScope);
53 TreeScope& oldScope() const { return *m_oldScope; }
54 TreeScope& newScope() const { return *m_newScope; }
57 RawPtrWillBeMember<TreeScope> m_newScope;
58 RawPtrWillBeMember<TreeScope> m_oldScope;
61 inline TreeScopeAdopter::TreeScopeAdopter(Node& toAdopt, TreeScope& newScope)
64 , m_oldScope(toAdopt.treeScope())
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheetList.h 26 #include "core/dom/TreeScope.h"
40 static PassRefPtrWillBeRawPtr<StyleSheetList> create(TreeScope* treeScope) { return adoptRefWillBeNoop(new StyleSheetList(treeScope)); }
59 StyleSheetList(TreeScope*);
62 RawPtrWillBeMember<TreeScope> m_treeScope;
StyleSheetList.cpp 34 StyleSheetList::StyleSheetList(TreeScope* treeScope)
35 : m_treeScope(treeScope)
CSSCursorImageValue.cpp 42 static inline SVGCursorElement* resourceReferencedByCursorElement(const String& url, TreeScope& treeScope)
44 Element* element = SVGURIReference::targetElementFromIRIString(url, treeScope);
71 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, referencedElement->treeScope()))
99 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, element->treeScope())) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceContainer.h 91 inline RenderSVGResourceContainer* getRenderSVGResourceContainerById(TreeScope& treeScope, const AtomicString& id)
96 if (RenderSVGResourceContainer* renderResource = treeScope.document().accessSVGExtensions().resourceById(id))
103 Renderer* getRenderSVGResourceById(TreeScope& treeScope, const AtomicString& id)
105 if (RenderSVGResourceContainer* container = getRenderSVGResourceContainerById(treeScope, id))
ReferenceFilterBuilder.cpp 117 TreeScope* treeScope = &renderer->node()->treeScope();
125 treeScope = cachedSVGDocument->document();
128 if (!treeScope)
131 Element* filter = treeScope->getElementById(filterOperation->fragment());
136 treeScope->document().accessSVGExtensions().addPendingResource(filterOperation->fragment(), toElement(renderer->node()));
RenderSVGTextPath.cpp 54 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPathElement->href()->currentValue()->value(), textPathElement->treeScope());
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGURIReference.cpp 42 AtomicString SVGURIReference::fragmentIdentifierFromIRIString(const String& url, const TreeScope& treeScope)
48 const Document& document = treeScope.document();
56 static inline KURL urlFromIRIStringWithFragmentIdentifier(const String& url, const TreeScope& treeScope, AtomicString& fragmentIdentifier)
62 const Document& document = treeScope.document();
74 Element* SVGURIReference::targetElementFromIRIString(const String& iri, const TreeScope& treeScope, AtomicString* fragmentIdentifier, Document* externalDocument)
76 const Document& document = treeScope.document();
100 return treeScope.getElementById(id)
    [all...]
SVGAltGlyphElement.cpp 74 Element* element = targetElementFromIRIString(getAttribute(XLinkNames::hrefAttr), treeScope(), &target);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DOMSelection.h 47 class TreeScope;
54 static PassRefPtrWillBeRawPtr<DOMSelection> create(const TreeScope* treeScope)
56 return adoptRefWillBeNoop(new DOMSelection(treeScope));
102 explicit DOMSelection(const TreeScope*);
114 RawPtrWillBeMember<const TreeScope> m_treeScope;
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ShadowRoot.h 33 #include "core/dom/TreeScope.h"
46 class ShadowRoot FINAL : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<ShadowRoot> {
67 // Disambiguate between Node and TreeScope hierarchies; TreeScope's implementation is simpler.
68 using TreeScope::document;
69 using TreeScope::getElementById;
112 using TreeScope::setDocument;
113 using TreeScope::setParentTreeScope;
167 DEFINE_TYPE_CASTS(ShadowRoot, TreeScope, treeScope, treeScope->rootNode().isShadowRoot(), treeScope.rootNode().isShadowRoot())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h 32 #include "core/dom/TreeScope.h"
50 static PassOwnPtrWillBeRawPtr<ScopedStyleResolver> create(TreeScope& scope)
55 static TreeScope* treeScopeFor(Document&, const CSSStyleSheet*);
57 const TreeScope& treeScope() const { return *m_scope; }
74 explicit ScopedStyleResolver(TreeScope& scope)
79 RawPtrWillBeMember<TreeScope> m_scope;

Completed in 232 milliseconds

1 2 3 4