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&, Document*, ExceptionState&);
95 HashMap<AtomicString, OwnPtr<SelectorQuery> > m_entries;
SelectorQuery.cpp 27 #include "core/dom/SelectorQuery.h"
462 SelectorQuery::SelectorQuery(const CSSSelectorList& selectorList)
468 bool SelectorQuery::matches(Element* element) const
473 PassRefPtr<NodeList> SelectorQuery::queryAll(Node* rootNode) const
478 PassRefPtr<Element> SelectorQuery::queryFirst(Node* rootNode) const
483 SelectorQuery* SelectorQueryCache::add(const AtomicString& selectors, Document* document, ExceptionState& es)
485 HashMap<AtomicString, OwnPtr<SelectorQuery> >::iterator it = m_entries.find(selectors);
508 OwnPtr<SelectorQuery> selectorQuery = adoptPtr(new SelectorQuery(selectorList))
    [all...]

Completed in 54 milliseconds