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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.h 75 class SelectorQuery {
76 WTF_MAKE_NONCOPYABLE(SelectorQuery);
79 explicit SelectorQuery(const CSSSelectorList&);
91 SelectorQuery* add(const AtomicString&, const Document&, ExceptionState&);
95 HashMap<AtomicString, OwnPtr<SelectorQuery> > m_entries;
SelectorQuery.cpp 27 #include "core/dom/SelectorQuery.h"
471 SelectorQuery::SelectorQuery(const CSSSelectorList& selectorList)
477 bool SelectorQuery::matches(Element& element) const
482 PassRefPtr<NodeList> SelectorQuery::queryAll(Node& rootNode) const
487 PassRefPtr<Element> SelectorQuery::queryFirst(Node& rootNode) const
492 SelectorQuery* SelectorQueryCache::add(const AtomicString& selectors, const Document& document, ExceptionState& exceptionState)
494 HashMap<AtomicString, OwnPtr<SelectorQuery> >::iterator it = m_entries.find(selectors);
517 OwnPtr<SelectorQuery> selectorQuery = adoptPtr(new SelectorQuery(selectorList))
    [all...]

Completed in 33 milliseconds