Searched refs:matchedRules (Results 1 - 9 of 9) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
H A D | MatchResult.cpp | 53 matchedRules.append(rule);
|
H A D | MatchResult.h | 73 Vector<StyleRule*, 64> matchedRules; member in struct:WebCore::MatchResult
|
H A D | StyleResolver.h | 280 void matchPageRulesForList(Vector<StyleRulePage*>& matchedRules, const Vector<StyleRulePage*>&, bool isLeftPage, bool isFirstPage, const String& pageName);
|
H A D | StyleResolver.cpp | 1318 applyProperties<pass>(state, matchedProperties.properties.get(), matchResult.matchedRules[i], isImportant, inheritedOnly, static_cast<PropertyWhitelistType>(matchedProperties.whitelistType)); 1326 applyProperties<pass>(state, matchedProperties.properties.get(), matchResult.matchedRules[i], isImportant, inheritedOnly, static_cast<PropertyWhitelistType>(matchedProperties.whitelistType));
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
H A D | PageRuleCollector.h | 46 void matchPageRulesForList(Vector<StyleRulePage*>& matchedRules, const Vector<StyleRulePage*>& rules, bool isLeftPage, bool isFirstPage, const String& pageName);
|
H A D | PageRuleCollector.cpp | 107 void PageRuleCollector::matchPageRulesForList(Vector<StyleRulePage*>& matchedRules, const Vector<StyleRulePage*>& rules, bool isLeftPage, bool isFirstPage, const String& pageName) argument 121 matchedRules.append(rule);
|
H A D | ElementRuleCollector.cpp | 236 Vector<MatchedRule, 32>& matchedRules = *m_matchedRules; local 238 for (unsigned i = 0; i < matchedRules.size(); ++i) 239 ensureStyleRuleList()->m_list.append(matchedRules[i].ruleData()->rule()); 244 for (unsigned i = 0; i < matchedRules.size(); ++i) 245 appendCSSOMWrapperForRule(matchedRules[i].ruleData()->rule()); 250 for (unsigned i = 0; i < matchedRules.size(); i++) { 252 const RuleData* ruleData = matchedRules[i].ruleData();
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
H A D | InspectorCSSAgent.cpp | 957 RefPtr<CSSRuleList> matchedRules = styleResolver.pseudoCSSRulesForElement(element, elementPseudoId, StyleResolver::AllCSSRules, DoNotIncludeStyleSheetInCSSOMWrapper); local 958 matchedCSSRules = buildArrayForMatchedRuleList(matchedRules.get(), styleResolver, originalElement); 964 RefPtr<CSSRuleList> matchedRules = styleResolver.pseudoCSSRulesForElement(element, pseudoId, StyleResolver::AllCSSRules, DoNotIncludeStyleSheetInCSSOMWrapper); local 965 if (matchedRules && matchedRules->length()) { 968 .setMatches(buildArrayForMatchedRuleList(matchedRules.get(), styleResolver, element));
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
H A D | EditingStyle.cpp | 1135 RefPtr<StyleRuleList> matchedRules = element->document().ensureStyleResolver().styleRulesForElement(element, rulesToInclude); local 1136 if (matchedRules) { 1137 for (unsigned i = 0; i < matchedRules->m_list.size(); ++i) 1138 style->mergeAndOverrideOnConflict(matchedRules->m_list[i]->properties());
|
Completed in 933 milliseconds