Searched defs:styleSheetIndex (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchRequest.h34 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, bool elementApplyAuthorStyles = true, unsigned styleSheetIndex = 0)
39 , styleSheetIndex(styleSheetIndex)
50 const unsigned styleSheetIndex; member in class:WebCore::MatchRequest
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DElementRuleCollector.h53 explicit MatchedRule(const RuleData* ruleData, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex) argument
57 , m_styleSheetIndex(styleSheetIndex)
68 uint32_t styleSheetIndex() const { return m_styleSheetIndex; } function in class:WebCore::MatchedRule
126 void addMatchedRule(const RuleData*, unsigned specificity, CascadeScope, CascadeOrder, unsigned styleSheetIndex);
H A DElementRuleCollector.cpp80 inline void ElementRuleCollector::addMatchedRule(const RuleData* rule, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex) argument
84 m_matchedRules->append(MatchedRule(rule, specificity, cascadeScope, cascadeOrder, styleSheetIndex));
332 addMatchedRule(&ruleData, result.specificity, cascadeScope, cascadeOrder, matchRequest.styleSheetIndex);
366 if (matchedRule1.styleSheetIndex() != matchedRule2.styleSheetIndex())
367 return matchedRule1.styleSheetIndex() < matchedRule2.styleSheetIndex();

Completed in 82 milliseconds