HomeSort by relevance Sort by last modified time
    Searched refs:styleBase (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/css/
CSSStyleSheet.cpp 212 StyleBase* rule = item(i);
235 StyleBase* styleObject = this;
253 StyleBase* root = this;
254 while (StyleBase* parent = root->parent())
286 StyleBase* styleBase = styleSheet->item(i);
287 if (!styleBase->isRule())
290 CSSRule* rule = static_cast<CSSRule*>(styleBase);
  /external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.cpp 133 CSSStyleSheet* InspectorCSSAgent::parentStyleSheet(StyleBase* styleBase)
135 if (!styleBase)
138 StyleSheet* styleSheet = styleBase->stylesheet();
146 CSSStyleRule* InspectorCSSAgent::asCSSStyleRule(StyleBase* styleBase)
148 if (!styleBase->isStyleRule())
150 CSSRule* rule = static_cast<CSSRule*>(styleBase);
InspectorStyleSheet.cpp 113 static PassRefPtr<CSSRuleList> asCSSRuleList(StyleBase* styleBase)
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();
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8GCController.cpp 289 static GroupId calculateGroupId(StyleBase* styleBase)
291 ASSERT(styleBase);
292 StyleBase* current = styleBase;
310 StyleBase* parent = current->parent();
354 m_grouper.append(GrouperItem(calculateGroupId(static_cast<StyleBase*>(object)), wrapper));

Completed in 116 milliseconds