HomeSort by relevance Sort by last modified time
    Searched refs:m_matchedRules (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
ElementRuleCollector.cpp 70 if (!m_matchedRules)
71 m_matchedRules = adoptPtr(new Vector<MatchedRule, 32>);
72 m_matchedRules->append(MatchedRule(rule, cascadeScope, cascadeOrder));
77 if (!m_matchedRules)
79 m_matchedRules->clear();
180 if (!m_matchedRules || m_matchedRules->isEmpty())
185 Vector<MatchedRule, 32>& matchedRules = *m_matchedRules;
305 ASSERT(m_matchedRules);
306 std::sort(m_matchedRules->begin(), m_matchedRules->end(), compareRules)
    [all...]
ElementRuleCollector.h 103 unsigned lastMatchedRulesPosition() const { return m_matchedRules ? m_matchedRules->size() : 0; }
133 OwnPtr<Vector<MatchedRule, 32> > m_matchedRules;

Completed in 965 milliseconds