HomeSort by relevance Sort by last modified time
    Searched defs:StyleRuleSupports (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRule.cpp 74 delete static_cast<StyleRuleSupports*>(this);
115 return static_cast<const StyleRuleSupports*>(this)->copy();
158 rule = CSSSupportsRule::create(static_cast<StyleRuleSupports*>(self), parentSheet);
314 StyleRuleSupports::StyleRuleSupports(const String& conditionText, bool conditionIsSupported, Vector<RefPtr<StyleRuleBase> >& adoptRules)
321 StyleRuleSupports::StyleRuleSupports(const StyleRuleSupports& o)
StyleRule.h 208 class StyleRuleSupports : public StyleRuleGroup {
210 static PassRefPtr<StyleRuleSupports> create(const String& conditionText, bool conditionIsSupported, Vector<RefPtr<StyleRuleBase> >& adoptRules)
212 return adoptRef(new StyleRuleSupports(conditionText, conditionIsSupported, adoptRules));
217 PassRefPtr<StyleRuleSupports> copy() const { return adoptRef(new StyleRuleSupports(*this)); }
220 StyleRuleSupports(const String& conditionText, bool conditionIsSupported, Vector<RefPtr<StyleRuleBase> >& adoptRules);
221 StyleRuleSupports(const StyleRuleSupports&);
285 inline const StyleRuleSupports* toStyleRuleSupports(const StyleRuleGroup* rule)
288 return static_cast<const StyleRuleSupports*>(rule)
    [all...]

Completed in 65 milliseconds