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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleEngine.cpp 119 void StyleEngine::insertTreeScopeInDocumentOrder(TreeScopeSet& treeScopes, TreeScope* treeScope)
121 if (treeScopes.isEmpty()) {
122 treeScopes.add(treeScope);
125 if (treeScopes.contains(treeScope))
128 TreeScopeSet::iterator begin = treeScopes.begin();
129 TreeScopeSet::iterator end = treeScopes.end();
137 treeScopes.insertBefore(followingTreeScope, treeScope);
143 treeScopes.insertBefore(followingTreeScope, treeScope);
373 void StyleEngine::clearMediaQueryRuleSetOnTreeScopeStyleSheets(TreeScopeSet treeScopes)
375 for (TreeScopeSet::iterator it = treeScopes.begin(); it != treeScopes.end(); ++it)
    [all...]
StyleEngine.h 199 void clearMediaQueryRuleSetOnTreeScopeStyleSheets(TreeScopeSet treeScopes);
TreeScope.cpp 451 static void listTreeScopes(Node* node, Vector<TreeScope*, 5>& treeScopes)
454 treeScopes.append(&node->treeScope());
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventPath.cpp 156 // - TreeScopes in m_treeScopeEventContexts must be *connected* in the same tree of trees.
303 WillBeHeapVector<RawPtrWillBeMember<TreeScope> > treeScopes;
310 treeScopes.append(&m_treeScopeEventContexts[i]->treeScope());
313 adjustTouchList(node, touchEvent.touches(), adjustedTouches, treeScopes);
314 adjustTouchList(node, touchEvent.targetTouches(), adjustedTargetTouches, treeScopes);
315 adjustTouchList(node, touchEvent.changedTouches(), adjustedChangedTouches, treeScopes);
328 void EventPath::adjustTouchList(const Node* node, const TouchList* touchList, WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedTouchList, const WillBeHeapVector<RawPtrWillBeMember<TreeScope> >& treeScopes)
336 for (size_t j = 0; j < treeScopes.size(); ++j) {
337 adjustedTouchList[j]->append(touch.cloneWithNewTarget(findRelatedNode(treeScopes[j], relatedNodeMap)));
EventPath.h 84 void adjustTouchList(const Node*, const TouchList*, WillBeHeapVector<RawPtrWillBeMember<TouchList> > adjustedTouchList, const WillBeHeapVector<RawPtrWillBeMember<TreeScope> >& treeScopes);

Completed in 53 milliseconds