OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TreeScopeSet
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
StyleEngine.h
191
typedef ListHashSet<TreeScope*, 16>
TreeScopeSet
;
192
static void insertTreeScopeInDocumentOrder(
TreeScopeSet
&, TreeScope*);
193
void clearMediaQueryRuleSetOnTreeScopeStyleSheets(
TreeScopeSet
treeScopes);
220
TreeScopeSet
m_dirtyTreeScopes;
221
TreeScopeSet
m_activeTreeScopes;
StyleEngine.cpp
104
void StyleEngine::insertTreeScopeInDocumentOrder(
TreeScopeSet
& treeScopes, TreeScope* treeScope)
113
TreeScopeSet
::iterator begin = treeScopes.begin();
114
TreeScopeSet
::iterator end = treeScopes.end();
115
TreeScopeSet
::iterator it = end;
340
void StyleEngine::clearMediaQueryRuleSetOnTreeScopeStyleSheets(
TreeScopeSet
treeScopes)
342
for (
TreeScopeSet
::iterator it = treeScopes.begin(); it != treeScopes.end(); ++it) {
397
TreeScopeSet
treeScopes = updateMode == FullStyleUpdate ? m_activeTreeScopes : m_dirtyTreeScopes;
400
for (
TreeScopeSet
::iterator it = treeScopes.begin(); it != treeScopes.end(); ++it) {
436
TreeScopeSet
::iterator begin = m_activeTreeScopes.begin();
437
TreeScopeSet
::iterator end = m_activeTreeScopes.end()
[
all
...]
Completed in 932 milliseconds