OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_matchedRules
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
ElementRuleCollector.cpp
82
if (!
m_matchedRules
)
83
m_matchedRules
= adoptPtr(new Vector<MatchedRule, 32>);
84
m_matchedRules
->append(MatchedRule(rule, specificity, cascadeScope, cascadeOrder, styleSheetIndex));
89
if (!
m_matchedRules
)
91
m_matchedRules
->clear();
231
if (!
m_matchedRules
||
m_matchedRules
->isEmpty())
236
Vector<MatchedRule, 32>& matchedRules = *
m_matchedRules
;
374
ASSERT(
m_matchedRules
);
375
std::sort(
m_matchedRules
->begin(), m_matchedRules->end(), compareRules)
[
all
...]
ElementRuleCollector.h
112
unsigned lastMatchedRulesPosition() const { return
m_matchedRules
?
m_matchedRules
->size() : 0; }
144
OwnPtr<Vector<MatchedRule, 32> >
m_matchedRules
;
Completed in 449 milliseconds