OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_atHostRules
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.cpp
260
HashMap<const ShadowRoot*, OwnPtr<RuleSet> >::AddResult addResult =
m_atHostRules
.add(shadowRoot, nullptr);
292
if (
m_atHostRules
.isEmpty())
295
for (HashMap<const ShadowRoot*, OwnPtr<RuleSet> >::iterator it =
m_atHostRules
.begin(); it !=
m_atHostRules
.end(); ++it)
307
m_atHostRules
.remove(shadowRoot);
344
HashMap<const ShadowRoot*, OwnPtr<RuleSet> >::const_iterator it =
m_atHostRules
.find(shadowRoot);
345
return it !=
m_atHostRules
.end() ? it->value.get() : 0;
353
if (
m_atHostRules
.isEmpty() || !m_scopingNode->isElementNode())
ScopedStyleResolver.h
63
bool hasOnlyEmptyRuleSets() const { return !m_authorStyle->ruleCount() &&
m_atHostRules
.isEmpty(); }
92
HashMap<const ShadowRoot*, OwnPtr<RuleSet> >
m_atHostRules
;
Completed in 2353 milliseconds