Home
last modified time | relevance | path

Searched refs:linkMatchType (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DMatchResult.cpp46 …perties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhite… in addMatchedProperties() argument
51 newProperties.linkMatchType = linkMatchType; in addMatchedProperties()
DMatchResult.h62 unsigned linkMatchType : 2; member
77 …operties(const StylePropertySet* properties, StyleRule* = 0, unsigned linkMatchType = SelectorChec…
97 return a.properties == b.properties && a.linkMatchType == b.linkMatchType;
DStyleResolver.cpp1313 unsigned linkMatchType = matchedProperties.linkMatchType; in applyMatchedProperties() local
1315 state.setApplyPropertyToRegularStyle(linkMatchType & SelectorChecker::MatchLink); in applyMatchedProperties()
1316 state.setApplyPropertyToVisitedLinkStyle(linkMatchType & SelectorChecker::MatchVisited); in applyMatchedProperties()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSelectorChecker.cpp1016 unsigned linkMatchType = MatchAll; in determineLinkMatchType() local
1029 linkMatchType &= ~SelectorChecker::MatchVisited; in determineLinkMatchType()
1031 linkMatchType &= ~SelectorChecker::MatchLink; in determineLinkMatchType()
1036 linkMatchType &= ~SelectorChecker::MatchVisited; in determineLinkMatchType()
1039 linkMatchType &= ~SelectorChecker::MatchLink; in determineLinkMatchType()
1049 return linkMatchType; in determineLinkMatchType()
1050 if (linkMatchType != MatchAll) in determineLinkMatchType()
1051 return linkMatchType; in determineLinkMatchType()
1053 return linkMatchType; in determineLinkMatchType()
DRuleSet.h85 unsigned linkMatchType() const { return m_linkMatchType; } in linkMatchType() function
DElementRuleCollector.cpp255 …roperties(ruleData->rule()->properties(), ruleData->rule(), ruleData->linkMatchType(), ruleData->p… in sortAndTransferMatchedRules()