Searched defs:styleBase (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSStyleSheet.cpp286 StyleBase* styleBase = styleSheet->item(i); local
287 if (!styleBase->isRule())
290 CSSRule* rule = static_cast<CSSRule*>(styleBase);
/external/webkit/Source/WebCore/bindings/v8/
H A DV8GCController.cpp289 static GroupId calculateGroupId(StyleBase* styleBase) argument
291 ASSERT(styleBase);
292 StyleBase* current = styleBase;
/external/webkit/Source/WebCore/inspector/
H A DInspectorCSSAgent.cpp133 CSSStyleSheet* InspectorCSSAgent::parentStyleSheet(StyleBase* styleBase) argument
135 if (!styleBase)
138 StyleSheet* styleSheet = styleBase->stylesheet();
146 CSSStyleRule* InspectorCSSAgent::asCSSStyleRule(StyleBase* styleBase) argument
148 if (!styleBase->isStyleRule())
150 CSSRule* rule = static_cast<CSSRule*>(styleBase);
H A DInspectorStyleSheet.cpp113 static PassRefPtr<CSSRuleList> asCSSRuleList(StyleBase* styleBase) argument
115 if (!styleBase)
118 if (styleBase->isCSSStyleSheet())
119 return CSSRuleList::create(static_cast<CSSStyleSheet*>(styleBase), true);
120 if (styleBase->isRule()) {
121 unsigned ruleType = static_cast<CSSRule*>(styleBase)->type();
126 result = static_cast<CSSMediaRule*>(styleBase)->cssRules();
129 result = static_cast<WebKitCSSKeyframesRule*>(styleBase)->cssRules();

Completed in 1003 milliseconds