Home
last modified time | relevance | path

Searched refs:m_authorStyleSheets (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DScopedStyleResolver.cpp72 m_authorStyleSheets.append(sheet); in addRulesFromSheet()
82 for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) in collectFeaturesTo()
83 features.add(m_authorStyleSheets[i]->ruleSet().features()); in collectFeaturesTo()
88 m_authorStyleSheets.clear(); in resetAuthorStyle()
94 for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) { in checkRegionStyle()
95 const RuleSet& ruleSet = m_authorStyleSheets[i]->ruleSet(); in checkRegionStyle()
145 for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) { in collectMatchingAuthorRules()
146 …MatchRequest matchRequest(&m_authorStyleSheets[i]->ruleSet(), includeEmptyRules, scopingNode, appl… in collectMatchingAuthorRules()
156 for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) in matchPageRules()
157 collector.matchPageRules(&m_authorStyleSheets[i]->ruleSet()); in matchPageRules()
[all …]
DScopedStyleResolver.h77 Vector<StyleSheetContents*> m_authorStyleSheets; variable
/external/chromium_org/third_party/WebKit/Source/core/dom/
DStyleEngine.h94 …t Vector<RefPtr<CSSStyleSheet> >& documentAuthorStyleSheets() const { return m_authorStyleSheets; } in documentAuthorStyleSheets()
212 Vector<RefPtr<CSSStyleSheet> > m_authorStyleSheets; variable
DStyleEngine.cpp84 for (unsigned i = 0; i < m_authorStyleSheets.size(); ++i) in ~StyleEngine()
85 m_authorStyleSheets[i]->clearOwnerNode(); in ~StyleEngine()
236 m_authorStyleSheets.append(CSSStyleSheet::create(authorSheet, &m_document)); in addAuthorSheet()
237 m_document.addedStyleSheet(m_authorStyleSheets.last().get(), RecalcStyleImmediately); in addAuthorSheet()