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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.h 68 Node* findTraverseRoot(Node* rootNode, bool& matchTraverseRoot) const;
SelectorQuery.cpp 359 // If matchTraverseRoot is true, the returned Node is the single Element that may match the selector query.
361 // If matchTraverseRoot is false, the returned Node is the rootNode parameter or a descendant of rootNode representing
364 // The returned Node may be 0, regardless of matchTraverseRoot, if this method finds that the selectors won't
366 Node* SelectorDataList::findTraverseRoot(Node* rootNode, bool& matchTraverseRoot) const
384 matchTraverseRoot = true;
389 matchTraverseRoot = false;
400 matchTraverseRoot = false;
444 bool matchTraverseRoot;
445 Node* traverseRootNode = findTraverseRoot(rootNode, matchTraverseRoot);
448 if (matchTraverseRoot) {
    [all...]

Completed in 87 milliseconds