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.h64 unsigned linkMatchType : 2; member
86 …void addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType = SelectorChe…
104 return a.properties == b.properties && a.m_types.linkMatchType == b.m_types.linkMatchType;
DMatchResult.cpp51 void MatchResult::addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType, … in addMatchedProperties() argument
56 newProperties.m_types.linkMatchType = linkMatchType; in addMatchedProperties()
DStyleResolver.cpp1357 unsigned linkMatchType = matchedProperties.m_types.linkMatchType; in applyMatchedProperties() local
1359 state.setApplyPropertyToRegularStyle(linkMatchType & SelectorChecker::MatchLink); in applyMatchedProperties()
1360 state.setApplyPropertyToVisitedLinkStyle(linkMatchType & SelectorChecker::MatchVisited); in applyMatchedProperties()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSelectorChecker.cpp1073 unsigned linkMatchType = MatchAll; in determineLinkMatchType() local
1086 linkMatchType &= ~SelectorChecker::MatchVisited; in determineLinkMatchType()
1088 linkMatchType &= ~SelectorChecker::MatchLink; in determineLinkMatchType()
1093 linkMatchType &= ~SelectorChecker::MatchVisited; in determineLinkMatchType()
1096 linkMatchType &= ~SelectorChecker::MatchLink; in determineLinkMatchType()
1106 return linkMatchType; in determineLinkMatchType()
1107 if (linkMatchType != MatchAll) in determineLinkMatchType()
1108 return linkMatchType; in determineLinkMatchType()
1110 return linkMatchType; in determineLinkMatchType()
DRuleSet.h89 unsigned linkMatchType() const { return m_linkMatchType; } in linkMatchType() function
DElementRuleCollector.cpp253 …m_result.addMatchedProperties(&ruleData->rule()->properties(), ruleData->linkMatchType(), ruleData… in sortAndTransferMatchedRules()