OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights reserved. |
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) |
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
62 return; | 62 return; |
63 | 63 |
64 for (const CSSSelector* selector = selectorList->first(); selector; selector = CSSSelectorList::next(selector)) { | 64 for (const CSSSelector* selector = selectorList->first(); selector; selector = CSSSelectorList::next(selector)) { |
65 for (const CSSSelector* subSelector = selector; subSelector; subSelector = subSelector->tagHistory()) | 65 for (const CSSSelector* subSelector = selector; subSelector; subSelector = subSelector->tagHistory()) |
66 collectFeaturesFromSelector(subSelector); | 66 collectFeaturesFromSelector(subSelector); |
67 } | 67 } |
68 } | 68 } |
69 | 69 |
70 void RuleFeatureSet::add(const RuleFeatureSet& other) | 70 void RuleFeatureSet::add(const RuleFeatureSet& other) |
71 { | 71 { |
72 if (const RuleSetAnalyzer* otherAnalyzer = other.ruleSetAnalyzer()) | |
73 ensureRuleSetAnalyzer()->combine(*otherAnalyzer); | |
74 | |
72 HashSet<AtomicString>::const_iterator end = other.idsInRules.end(); | 75 HashSet<AtomicString>::const_iterator end = other.idsInRules.end(); |
73 for (HashSet<AtomicString>::const_iterator it = other.idsInRules.begin(); it != end; ++it) | 76 for (HashSet<AtomicString>::const_iterator it = other.idsInRules.begin(); it != end; ++it) |
74 idsInRules.add(*it); | 77 idsInRules.add(*it); |
75 end = other.classesInRules.end(); | 78 end = other.classesInRules.end(); |
76 for (HashSet<AtomicString>::const_iterator it = other.classesInRules.begin() ; it != end; ++it) | 79 for (HashSet<AtomicString>::const_iterator it = other.classesInRules.begin() ; it != end; ++it) |
77 classesInRules.add(*it); | 80 classesInRules.add(*it); |
78 end = other.attrsInRules.end(); | 81 end = other.attrsInRules.end(); |
79 for (HashSet<AtomicString>::const_iterator it = other.attrsInRules.begin(); it != end; ++it) | 82 for (HashSet<AtomicString>::const_iterator it = other.attrsInRules.begin(); it != end; ++it) |
80 attrsInRules.add(*it); | 83 attrsInRules.add(*it); |
81 siblingRules.append(other.siblingRules); | 84 siblingRules.append(other.siblingRules); |
82 uncommonAttributeRules.append(other.uncommonAttributeRules); | 85 uncommonAttributeRules.append(other.uncommonAttributeRules); |
83 m_usesFirstLineRules = m_usesFirstLineRules || other.m_usesFirstLineRules; | 86 m_usesFirstLineRules = m_usesFirstLineRules || other.m_usesFirstLineRules; |
84 m_maxDirectAdjacentSelectors = std::max(m_maxDirectAdjacentSelectors, other. maxDirectAdjacentSelectors()); | 87 m_maxDirectAdjacentSelectors = std::max(m_maxDirectAdjacentSelectors, other. maxDirectAdjacentSelectors()); |
85 } | 88 } |
86 | 89 |
87 void RuleFeatureSet::clear() | 90 void RuleFeatureSet::clear() |
88 { | 91 { |
89 idsInRules.clear(); | 92 idsInRules.clear(); |
90 classesInRules.clear(); | 93 classesInRules.clear(); |
91 attrsInRules.clear(); | 94 attrsInRules.clear(); |
92 siblingRules.clear(); | 95 siblingRules.clear(); |
93 uncommonAttributeRules.clear(); | 96 uncommonAttributeRules.clear(); |
94 m_usesFirstLineRules = false; | 97 m_usesFirstLineRules = false; |
95 m_maxDirectAdjacentSelectors = 0; | 98 m_maxDirectAdjacentSelectors = 0; |
96 } | 99 } |
97 | 100 |
101 const RuleSetAnalyzer* RuleFeatureSet::ruleSetAnalyzer() const | |
102 { | |
103 return m_ruleSetAnalyzer.get(); | |
104 } | |
105 | |
106 RuleSetAnalyzer* RuleFeatureSet::ensureRuleSetAnalyzer() | |
107 { | |
108 if (!m_ruleSetAnalyzer) | |
109 m_ruleSetAnalyzer = RuleSetAnalyzer::create(); | |
110 return m_ruleSetAnalyzer.get(); | |
esprehn
2014/01/16 20:11:48
return *m_ruleSetAnalyzer;
chrishtr
2014/01/16 20:46:22
Done.
| |
111 } | |
112 | |
98 } // namespace WebCore | 113 } // namespace WebCore |
OLD | NEW |