OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_activeAuthorStyleSheets
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCollection.cpp
53
m_activeAuthorStyleSheets
.swap(other.
m_activeAuthorStyleSheets
);
58
m_activeAuthorStyleSheets
.append(sheets);
63
m_activeAuthorStyleSheets
.append(sheet);
185
if (
m_activeAuthorStyleSheets
.size() <= newCollection.activeAuthorStyleSheets().size()) {
186
change.styleResolverUpdateType = compareStyleSheets(
m_activeAuthorStyleSheets
, newCollection.activeAuthorStyleSheets(), addedSheets);
188
StyleResolverUpdateType updateType = compareStyleSheets(newCollection.activeAuthorStyleSheets(),
m_activeAuthorStyleSheets
, addedSheets);
230
for (size_t i = 0; i <
m_activeAuthorStyleSheets
.size(); ++i) {
231
StyleSheetContents* contents =
m_activeAuthorStyleSheets
[i]->contents();
262
m_usesRemUnits = styleSheetsUseRemUnits(
m_activeAuthorStyleSheets
);
[
all
...]
StyleSheetCollection.h
62
Vector<RefPtr<CSSStyleSheet> >& activeAuthorStyleSheets() { return
m_activeAuthorStyleSheets
; }
64
const Vector<RefPtr<CSSStyleSheet> >& activeAuthorStyleSheets() const { return
m_activeAuthorStyleSheets
; }
74
Vector<RefPtr<CSSStyleSheet> >
m_activeAuthorStyleSheets
;
ShadowTreeStyleSheetCollection.cpp
109
styleResolver->removePendingAuthorStyleSheets(
m_activeAuthorStyleSheets
);
112
styleResolver->lazyAppendAuthorStyleSheets(
m_activeAuthorStyleSheets
.size(), collection.activeAuthorStyleSheets());
DocumentStyleSheetCollection.cpp
177
styleResolver->removePendingAuthorStyleSheets(
m_activeAuthorStyleSheets
);
180
styleResolver->lazyAppendAuthorStyleSheets(
m_activeAuthorStyleSheets
.size(), collection.activeAuthorStyleSheets());
Completed in 292 milliseconds