/external/chromium_org/third_party/WebKit/Source/core/css/ |
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/dom/ |
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) { }
|
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);
|
DocumentStyleSheetCollection.cpp | 40 DocumentStyleSheetCollection::DocumentStyleSheetCollection(TreeScope& treeScope) 41 : TreeScopeStyleSheetCollection(treeScope) 43 ASSERT(treeScope.rootNode() == treeScope.rootNode().document()); 110 styleResolver->resetAuthorStyle(treeScope());
|
Node.h | 31 #include "core/dom/TreeScope.h" 129 friend class TreeScope; 450 return treeScope().document(); 453 TreeScope& treeScope() const 741 Node(TreeScope*, ConstructionType); 763 void setTreeScope(TreeScope* scope) { m_treeScope = scope; } [all...] |
TreeScopeStyleSheetCollection.cpp | 42 TreeScopeStyleSheetCollection::TreeScopeStyleSheetCollection(TreeScope& treeScope) 43 : m_treeScope(treeScope)
|
ContainerNode.h | 204 ContainerNode(TreeScope*, ConstructionType = CreateContainer); 276 inline ContainerNode::ContainerNode(TreeScope* treeScope, ConstructionType type) 277 : Node(treeScope, type) 339 return &treeScope().rootNode() == this;
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
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...] |
HTMLLabelElement.h | 84 void updateLabel(TreeScope&, const AtomicString& oldForAttributeValue, const AtomicString& newForAttributeValue);
|
HTMLStyleElement.cpp | 108 TreeScope* containingScope = containingShadowRoot(); 109 StyleElement::removedFromDocument(document(), this, scopingNode, containingScope ? *containingScope : insertionPoint->treeScope());
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
ScopedStyleResolver.cpp | 45 TreeScope* ScopedStyleResolver::treeScopeFor(Document& document, const CSSStyleSheet* sheet) 64 for (TreeScope* scope = treeScope().parentTreeScope(); scope; scope = scope->parentTreeScope()) { 80 resolver->processScopedRules(ruleSet, cssSheet, index, treeScope().rootNode());
|
StyleResolver.h | 128 void resetAuthorStyle(TreeScope&);
|
StyleResolver.cpp | 190 TreeScope* treeScope = ScopedStyleResolver::treeScopeFor(document(), cssSheet); 191 if (!treeScope) 194 ScopedStyleResolver& resolver = treeScope->ensureScopedStyleResolver(); 241 ScopedStyleResolver* resolver = &scope.treeScope().ensureScopedStyleResolver(); 258 void StyleResolver::resetAuthorStyle(TreeScope& treeScope) 260 ScopedStyleResolver* resolver = treeScope.scopedStyleResolver(); 264 m_treeBoundaryCrossingRules.reset(&treeScope.rootNode()); 268 if (treeScope.rootNode().isDocumentNode() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGUseElement.h | 93 TreeScope* referencedScope() const;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/ |
ShadowRoot.cpp | 46 struct SameSizeAsShadowRoot : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<ShadowRoot> { 55 , TreeScope(*this, document) 77 // for this ShadowRoot instance because TreeScope destructor 82 // We must remove all of our children first before the TreeScope destructor 87 // We must call clearRareData() here since a ShadowRoot class inherits TreeScope 88 // as well as Node. See a comment on TreeScope.h for the reason. 324 TreeScope::trace(visitor);
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
FrameTree.cpp | 177 TreeScope* scope = toLocalFrame(m_thisFrame)->document(); 198 TreeScope* scope = toLocalFrame(m_thisFrame)->document(); 208 inline unsigned FrameTree::scopedChildCount(TreeScope* scope) const
|
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/ |
SVGFEImage.cpp | 51 FEImage::FEImage(Filter* filter, TreeScope& treeScope, const String& href, PassRefPtr<SVGPreserveAspectRatio> preserveAspectRatio) 53 , m_treeScope(&treeScope) 64 PassRefPtr<FEImage> FEImage::createWithIRIReference(Filter* filter, TreeScope& treeScope, const String& href, PassRefPtr<SVGPreserveAspectRatio> preserveAspectRatio) 66 return adoptRef(new FEImage(filter, treeScope, href, preserveAspectRatio));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
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()));
|
SVGResources.cpp | 161 return SVGURIReference::fragmentIdentifierFromIRIString(target, element.treeScope()); 178 static inline RenderSVGResourceContainer* paintingResourceFromSVGPaint(TreeScope& treeScope, const SVGPaintType& paintType, const String& paintUri, AtomicString& id, bool& hasPendingResource) 183 id = SVGURIReference::fragmentIdentifierFromIRIString(paintUri, treeScope); 184 RenderSVGResourceContainer* container = getRenderSVGResourceContainerById(treeScope, id); 231 TreeScope& treeScope = element->treeScope(); 243 if (!ensureResources(resources)->setClipper(getRenderSVGResourceById<RenderSVGResourceClipper>(treeScope, id))) 249 if (!ensureResources(resources)->setFilter(getRenderSVGResourceById<RenderSVGResourceFilter>(treeScope, id)) [all...] |
/external/chromium_org/win8/test/ |
ui_automation_client.cc | 425 static_cast<TreeScope>(TreeScope_Children | TreeScope_Descendants), 508 static_cast<TreeScope>(TreeScope_Children | TreeScope_Descendants),
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
Internals.cpp | 58 #include "core/dom/TreeScope.h" 377 return &node->treeScope().rootNode(); 383 const TreeScope* parentTreeScope = node->treeScope().parentTreeScope(); 433 const TreeScope* treeScope1 = node1->isDocumentNode() ? static_cast<const TreeScope*>(toDocument(node1)) : 434 node1->isShadowRoot() ? static_cast<const TreeScope*>(toShadowRoot(node1)) : 0; 435 const TreeScope* treeScope2 = node2->isDocumentNode() ? static_cast<const TreeScope*>(toDocument(node2)) : 436 node2->isShadowRoot() ? static_cast<const TreeScope*>(toShadowRoot(node2)) : 0 [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
DOMSelection.cpp | 41 #include "core/dom/TreeScope.h" 63 DOMSelection::DOMSelection(const TreeScope* treeScope) 64 : DOMWindowProperty(treeScope->rootNode().document().frame()) 65 , m_treeScope(treeScope) 418 if (originalRange->startContainer()->treeScope() != newRange->startContainer()->treeScope()) {
|
TextIteratorTest.cpp | 132 PassRefPtrWillBeRawPtr<ShadowRoot> createShadowRootForElementWithIDAndSetInnerHTML(TreeScope& scope, const char* hostElementID, const char* shadowRootContent)
|