Home
last modified time | relevance | path

Searched refs:createCSSOMWrapper (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DStyleRule.cpp47 PassRefPtr<CSSRule> StyleRuleBase::createCSSOMWrapper(CSSStyleSheet* parentSheet) const in createCSSOMWrapper() function in WebCore::StyleRuleBase
49 return createCSSOMWrapper(parentSheet, 0); in createCSSOMWrapper()
52 PassRefPtr<CSSRule> StyleRuleBase::createCSSOMWrapper(CSSRule* parentRule) const in createCSSOMWrapper() function in WebCore::StyleRuleBase
54 return createCSSOMWrapper(0, parentRule); in createCSSOMWrapper()
134 PassRefPtr<CSSRule> StyleRuleBase::createCSSOMWrapper(CSSStyleSheet* parentSheet, CSSRule* parentRu… in createCSSOMWrapper() function in WebCore::StyleRuleBase
DStyleRule.h79 PassRefPtr<CSSRule> createCSSOMWrapper(CSSStyleSheet* parentSheet = 0) const;
80 PassRefPtr<CSSRule> createCSSOMWrapper(CSSRule* parentRule) const;
91 PassRefPtr<CSSRule> createCSSOMWrapper(CSSStyleSheet* parentSheet, CSSRule* parentRule) const;
DCSSGroupingRule.cpp131 … rule = m_groupRule->childRules()[index]->createCSSOMWrapper(const_cast<CSSGroupingRule*>(this)); in item()
DCSSStyleSheet.cpp261 cssRule = m_contents->ruleAt(index)->createCSSOMWrapper(this); in item()
DElementRuleCollector.cpp223 RefPtr<CSSRule> cssRule = rule->createCSSOMWrapper(sheet); in appendCSSOMWrapperForRule()