Searched defs:sheets (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DStyleSheetCollection.cpp48 void StyleSheetCollection::swapSheetsForSheetList(WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& sheets) argument
50 // Only called for collection of HTML Imports that never has active sheets.
52 m_styleSheetsForStyleSheetList.swap(sheets);
55 void StyleSheetCollection::appendActiveStyleSheets(const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet> >& sheets) argument
57 m_activeAuthorStyleSheets.appendVector(sheets);
H A DDocumentStyleSheetCollector.cpp47 void DocumentStyleSheetCollector::appendActiveStyleSheets(const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet> >& sheets) argument
49 m_activeAuthorStyleSheets.appendVector(sheets);
H A DTreeScopeStyleSheetCollection.cpp93 // If all new sheets were added at the end of the list we can just add them to existing StyleResolver.
115 static bool findFontFaceRulesFromStyleSheetContents(const WillBeHeapVector<RawPtrWillBeMember<StyleSheetContents> >& sheets, WillBeHeapVector<RawPtrWillBeMember<const StyleRuleFontFace> >& fontFaceRules) argument
119 for (unsigned i = 0; i < sheets.size(); ++i) {
120 ASSERT(sheets[i]);
121 if (sheets[i]->hasFontFaceRule()) {
123 sheets[i]->findFontFaceRules(fontFaceRules);
195 static bool styleSheetsUseRemUnits(const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet> >& sheets) argument
197 for (unsigned i = 0; i < sheets.size(); ++i) {
198 if (sheets[i]->contents()->usesRemUnits())
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleSheetList.cpp67 const WillBeHeapVector<RefPtrWillBeMember<StyleSheet> >& sheets = styleSheets(); local
68 return index < sheets.size() ? sheets[index].get() : 0;
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
H A DStyleSheetInvalidationAnalysis.cpp40 StyleSheetInvalidationAnalysis::StyleSheetInvalidationAnalysis(const WillBeHeapVector<RawPtrWillBeMember<StyleSheetContents> >& sheets) argument
43 for (unsigned i = 0; i < sheets.size() && !m_dirtiesAllStyle; ++i)
44 analyzeStyleSheet(sheets[i]);

Completed in 117 milliseconds