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

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.cpp 64 for (TreeScope* scope = treeScope().parentTreeScope(); scope; scope = scope->parentTreeScope()) {
StyleResolver.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp 109 return parentTreeScope();
400 for (current = this; current; current = current->parentTreeScope())
402 for (current = &otherScope; current; current = current->parentTreeScope())
437 for (const TreeScope* tree = this; tree; tree = tree->parentTreeScope())
441 for (const TreeScope* tree = &other; tree; tree = tree->parentTreeScope())
514 for (const TreeScope* current = &scope; current; current = current->parentTreeScope()) {
TreeScope.h 52 TreeScope* parentTreeScope() const { return m_parentTreeScope; }
Document.cpp 558 ASSERT(!parentTreeScope());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.h 113 Node* parentTreeScope(Node*);
Internals.idl 56 [TypeChecking=Interface] Node parentTreeScope(Node node);
Internals.cpp 380 Node* Internals::parentTreeScope(Node* node)
383 const TreeScope* parentTreeScope = node->treeScope().parentTreeScope();
384 return parentTreeScope ? &parentTreeScope->rootNode() : 0;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 329 for (const TreeScope* treeScope = &startContainer->treeScope(); treeScope != commonAncestorTreeScope; treeScope = treeScope->parentTreeScope())
    [all...]

Completed in 77 milliseconds