Searched refs:linkMatchType (Results 1 – 6 of 6) sorted by relevance
64 unsigned linkMatchType : 2; member86 …void addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType = SelectorChe…104 return a.properties == b.properties && a.m_types.linkMatchType == b.m_types.linkMatchType;
51 void MatchResult::addMatchedProperties(const StylePropertySet* properties, unsigned linkMatchType, … in addMatchedProperties() argument56 newProperties.m_types.linkMatchType = linkMatchType; in addMatchedProperties()
1357 unsigned linkMatchType = matchedProperties.m_types.linkMatchType; in applyMatchedProperties() local1359 state.setApplyPropertyToRegularStyle(linkMatchType & SelectorChecker::MatchLink); in applyMatchedProperties()1360 state.setApplyPropertyToVisitedLinkStyle(linkMatchType & SelectorChecker::MatchVisited); in applyMatchedProperties()
1073 unsigned linkMatchType = MatchAll; in determineLinkMatchType() local1086 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()
89 unsigned linkMatchType() const { return m_linkMatchType; } in linkMatchType() function
253 …m_result.addMatchedProperties(&ruleData->rule()->properties(), ruleData->linkMatchType(), ruleData… in sortAndTransferMatchedRules()