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

  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
HTMLContentElement.cpp 108 return selectorChecker.match(context, strategy) == SelectorChecker::SelectorMatches;
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.cpp 126 // * SelectorMatches - the selector matches the element e
163 return SelectorMatches;
187 if (match != SelectorMatches || !result)
191 return SelectorMatches;
239 if (matchForShadowDistributed(element, siblingTraversalStrategy, nextContext, result) == SelectorMatches)
240 return SelectorMatches;
248 if (match == SelectorMatches || match == SelectorFailsCompletely)
289 if (match == SelectorMatches || match == SelectorFailsAllSiblings || match == SelectorFailsCompletely)
316 if (match == SelectorMatches || match == SelectorFailsCompletely)
354 if (match(nextContext, siblingTraversalStrategy, result) == SelectorMatches)
    [all...]
SelectorChecker.h 46 enum Match { SelectorMatches, SelectorFailsLocally, SelectorFailsAllSiblings, SelectorFailsCompletely };
ElementRuleCollector.cpp 293 if (match != SelectorChecker::SelectorMatches)
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h 348 if (selectorChecker.match(selectorCheckingContext, DOMSiblingTraversalStrategy()) == SelectorChecker::SelectorMatches)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.cpp 142 inline bool SelectorDataList::selectorMatches(const SelectorData& selectorData, Element& element, const Node& rootNode) const
155 return selectorChecker.match(selectorCheckingContext, DOMSiblingTraversalStrategy()) == SelectorChecker::SelectorMatches;
162 if (selectorMatches(m_selectors[i], targetElement, targetElement))
301 if (selectorMatches(m_selectors[i], *element, rootNode)) {
352 if (selectorMatches(selector, element, rootNode))
362 if (selectorMatches(selector, *element, rootNode))
417 if (selectorMatches(m_selectors[i], *element, rootNode))
461 return selectorMatches(m_selectors[0], element, rootNode) ? &element : 0;
465 if (selectorMatches(m_selectors[0], *element, rootNode))

Completed in 263 milliseconds