OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CascadeScope
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
ElementRuleCollector.h
44
typedef unsigned
CascadeScope
;
47
const
CascadeScope
ignoreCascadeScope = 0;
53
explicit MatchedRule(const RuleData* ruleData, unsigned specificity,
CascadeScope
cascadeScope
, CascadeOrder cascadeOrder, unsigned styleSheetIndex)
56
, m_cascadeScope(
cascadeScope
)
65
uint32_t
cascadeScope
() const { return m_cascadeScope; }
73
CascadeScope
m_cascadeScope;
106
void collectMatchingRules(const MatchRequest&, RuleRange&, SelectorChecker::BehaviorAtBoundary = SelectorChecker::DoesNotCrossBoundary,
CascadeScope
= ignoreCascadeScope, CascadeOrder = ignoreCascadeOrder);
107
void collectMatchingRulesForRegion(const MatchRequest&, RuleRange&, SelectorChecker::BehaviorAtBoundary = SelectorChecker::DoesNotCrossBoundary,
CascadeScope
= ignoreCascadeScope, CascadeOrder = ignoreCascadeOrder);
117
void collectRuleIfMatches(const RuleData&, SelectorChecker::BehaviorAtBoundary,
CascadeScope
, CascadeOrder, const MatchRequest&, RuleRange&)
[
all
...]
ElementRuleCollector.cpp
80
inline void ElementRuleCollector::addMatchedRule(const RuleData* rule, unsigned specificity,
CascadeScope
cascadeScope
, CascadeOrder cascadeOrder, unsigned styleSheetIndex)
84
m_matchedRules->append(MatchedRule(rule, specificity,
cascadeScope
, cascadeOrder, styleSheetIndex));
140
void ElementRuleCollector::collectMatchingRules(const MatchRequest& matchRequest, RuleRange& ruleRange, SelectorChecker::BehaviorAtBoundary behaviorAtBoundary,
CascadeScope
cascadeScope
, CascadeOrder cascadeOrder)
153
collectMatchingRulesForList(matchRequest.ruleSet->cuePseudoRules(), behaviorAtBoundary,
cascadeScope
, cascadeOrder, matchRequest, ruleRange);
167
collectMatchingRulesForList(matchRequest.ruleSet->idRules(element.idForStyleResolution().impl()), behaviorAtBoundary,
cascadeScope
, cascadeOrder, matchRequest, ruleRange);
170
collectMatchingRulesForList(matchRequest.ruleSet->classRules(element.classNames()[i].impl()), behaviorAtBoundary,
cascadeScope
, cascadeOrder, matchRequest, ruleRange);
174
collectMatchingRulesForList(matchRequest.ruleSet->linkPseudoClassRules(), behaviorAtBoundary,
cascadeScope
, cascadeOrder, matchRequest, ruleRange);
176
collectMatchingRulesForList(matchRequest.ruleSet->focusPseudoClassRules(), behaviorAtBoundary,
cascadeScope
, cascadeOrder, matchRequest, ruleRange)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h
62
void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRules, bool applyAuthorStyles,
CascadeScope
, CascadeOrder = ignoreCascadeOrder);
ScopedStyleResolver.cpp
131
void ScopedStyleResolver::collectMatchingAuthorRules(ElementRuleCollector& collector, bool includeEmptyRules, bool applyAuthorStyles,
CascadeScope
cascadeScope
, CascadeOrder cascadeOrder)
147
collector.collectMatchingRules(matchRequest, ruleRange, static_cast<SelectorChecker::BehaviorAtBoundary>(behaviorAtBoundary),
cascadeScope
, cascadeOrder);
148
collector.collectMatchingRulesForRegion(matchRequest, ruleRange, static_cast<SelectorChecker::BehaviorAtBoundary>(behaviorAtBoundary),
cascadeScope
, cascadeOrder);
StyleResolver.cpp
446
CascadeScope
cascadeScope
= 0;
451
resolversInShadowTree.at(j)->collectMatchingAuthorRules(collector, includeEmptyRules, applyAuthorStyles,
cascadeScope
, cascadeOrder++);
454
++
cascadeScope
;
457
resolvers.at(i)->collectMatchingAuthorRules(collector, includeEmptyRules, applyAuthorStyles,
cascadeScope
++, --cascadeOrder);
489
CascadeScope
cascadeScope
= 0;
494
resolver->collectMatchingAuthorRules(collector, includeEmptyRules, applyAuthorStyles,
cascadeScope
++, resolver->treeScope() == element->treeScope() && resolver->scopingNode().isShadowRoot() ? 0 : cascadeOrder);
[
all
...]
Completed in 211 milliseconds