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

  /external/webkit/Source/WebCore/css/
CSSStyleSelector.h 63 class RuleData;
208 void addMatchedRule(const RuleData* rule) { m_matchedRules.append(rule); }
212 void matchRulesForList(const Vector<RuleData>*, int& firstRuleIndex, int& lastRuleIndex, bool includeEmptyRules);
213 bool fastRejectSelector(const RuleData&) const;
216 bool checkSelector(const RuleData&);
222 void matchPageRulesForList(const Vector<RuleData>*, bool isLeftPage, bool isFirstPage, const String& pageName);
334 Vector<const RuleData*, 32> m_matchedRules;
CSSStyleSelector.cpp 289 class RuleData {
291 RuleData(CSSStyleRule*, CSSSelector*, unsigned position);
302 // Try to balance between memory usage (there can be lots of RuleData objects) and good filtering performance.
327 typedef HashMap<AtomicStringImpl*, Vector<RuleData>*> AtomRuleMap;
341 const Vector<RuleData>* getIDRules(AtomicStringImpl* key) const { return m_idRules.get(key); }
342 const Vector<RuleData>* getClassRules(AtomicStringImpl* key) const { return m_classRules.get(key); }
343 const Vector<RuleData>* getTagRules(AtomicStringImpl* key) const { return m_tagRules.get(key); }
344 const Vector<RuleData>* getPseudoRules(AtomicStringImpl* key) const { return m_pseudoRules.get(key); }
345 const Vector<RuleData>* getUniversalRules() const { return &m_universalRules; }
346 const Vector<RuleData>* getPageRules() const { return &m_pageRules;
    [all...]

Completed in 1942 milliseconds