OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StyleRuleBase
(Results
1 - 25
of
38
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSRule.cpp
40
COMPILE_ASSERT(
StyleRuleBase
::Region == static_cast<
StyleRuleBase
::Type>(CSSRule::WEBKIT_REGION_RULE), enums_should_match);
42
COMPILE_ASSERT(
StyleRuleBase
::Viewport == static_cast<
StyleRuleBase
::Type>(CSSRule::VIEWPORT_RULE), enums_should_match);
StyleRule.cpp
45
COMPILE_ASSERT(sizeof(
StyleRuleBase
) <= sizeof(SameSizeAsStyleRuleBase), StyleRuleBase_should_stay_small);
47
PassRefPtr<CSSRule>
StyleRuleBase
::createCSSOMWrapper(CSSStyleSheet* parentSheet) const
52
PassRefPtr<CSSRule>
StyleRuleBase
::createCSSOMWrapper(CSSRule* parentRule) const
57
void
StyleRuleBase
::destroy()
99
PassRefPtr<
StyleRuleBase
>
StyleRuleBase
::copy() const
134
PassRefPtr<CSSRule>
StyleRuleBase
::createCSSOMWrapper(CSSStyleSheet* parentSheet, CSSRule* parentRule) const
137
StyleRuleBase
* self = const_cast<
StyleRuleBase
*>(this);
186
:
StyleRuleBase
(Style
[
all
...]
CSSUnknownRule.h
36
virtual void reattach(
StyleRuleBase
*) OVERRIDE { }
StyleRule.h
37
class
StyleRuleBase
: public WTF::RefCountedBase {
70
PassRefPtr<
StyleRuleBase
> copy() const;
83
StyleRuleBase
(Type type) : m_type(type) { }
84
StyleRuleBase
(const
StyleRuleBase
& o) : WTF::RefCountedBase(), m_type(o.m_type) { }
86
~
StyleRuleBase
() { }
96
class StyleRule : public
StyleRuleBase
{
123
class StyleRuleFontFace : public
StyleRuleBase
{
143
class StyleRulePage : public
StyleRuleBase
{
167
class StyleRuleGroup : public
StyleRuleBase
{
[
all
...]
StyleSheetContents.cpp
133
void StyleSheetContents::parserAppendRule(PassRefPtr<
StyleRuleBase
> rule)
164
StyleRuleBase
* StyleSheetContents::ruleAt(unsigned index) const
213
bool StyleSheetContents::wrapperInsertRule(PassRefPtr<
StyleRuleBase
> rule, unsigned index)
441
StyleRuleBase
* rule = styleSheet->m_childRules[i].get();
450
static bool childRulesHaveFailedOrCanceledSubresources(const Vector<RefPtr<
StyleRuleBase
> >& rules)
453
const
StyleRuleBase
* rule = rules[i].get();
455
case
StyleRuleBase
::Style:
459
case
StyleRuleBase
::FontFace:
463
case
StyleRuleBase
::Media:
467
case
StyleRuleBase
::Region
[
all
...]
StyleSheetContents.h
43
class
StyleRuleBase
;
98
void parserAppendRule(PassRefPtr<
StyleRuleBase
>);
107
const Vector<RefPtr<
StyleRuleBase
> >& childRules() const { return m_childRules; }
123
StyleRuleBase
* ruleAt(unsigned index) const;
129
bool wrapperInsertRule(PassRefPtr<
StyleRuleBase
>, unsigned index);
165
Vector<RefPtr<
StyleRuleBase
> > m_childRules;
CSSCharsetRule.h
42
virtual void reattach(
StyleRuleBase
* rule) OVERRIDE { ASSERT_UNUSED(rule, !rule); }
CSSFilterRule.h
49
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSFontFaceRule.h
41
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSGroupingRule.h
39
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSImportRule.h
42
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSMediaRule.h
40
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSPageRule.h
42
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSStyleRule.h
41
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSViewportRule.h
52
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
CSSRule.h
33
class
StyleRuleBase
;
62
virtual void reattach(
StyleRuleBase
*) = 0;
CSSFilterRule.cpp
77
void CSSFilterRule::reattach(
StyleRuleBase
* rule)
CSSFontFaceRule.cpp
63
void CSSFontFaceRule::reattach(
StyleRuleBase
* rule)
CSSMediaRule.cpp
70
void CSSMediaRule::reattach(
StyleRuleBase
* rule)
CSSViewportRule.cpp
76
void CSSViewportRule::reattach(
StyleRuleBase
* rule)
CSSKeyframesRule.h
40
class StyleRuleKeyframes FINAL : public
StyleRuleBase
{
81
virtual void reattach(
StyleRuleBase
*) OVERRIDE;
StyleInvalidationAnalysis.cpp
75
const Vector<RefPtr<
StyleRuleBase
> >& rules = styleSheetContents->childRules();
77
const
StyleRuleBase
* rule = rules[i].get();
111
static bool ruleAdditionMightRequireDocumentStyleRecalc(
StyleRuleBase
* rule)
163
const Vector<RefPtr<
StyleRuleBase
> >& rules = styleSheetContents->childRules();
165
StyleRuleBase
* rule = rules[i].get();
CSSKeyframesRule.cpp
38
:
StyleRuleBase
(Keyframes)
43
:
StyleRuleBase
(o)
198
void CSSKeyframesRule::reattach(
StyleRuleBase
* rule)
CSSGroupingRule.cpp
70
RefPtr<
StyleRuleBase
> newRule = parser.parseRule(styleSheet ? styleSheet->contents() : 0, ruleString);
142
void CSSGroupingRule::reattach(
StyleRuleBase
* rule)
CSSParser.h
67
class
StyleRuleBase
;
104
PassRefPtr<
StyleRuleBase
> parseRule(StyleSheetContents*, const String&);
323
StyleRuleBase
* createImportRule(const CSSParserString&, MediaQuerySet*);
327
typedef Vector<RefPtr<
StyleRuleBase
> > RuleList;
328
StyleRuleBase
* createMediaRule(MediaQuerySet*, RuleList*);
330
RuleList* appendRule(RuleList*,
StyleRuleBase
*);
331
StyleRuleBase
* createStyleRule(Vector<OwnPtr<CSSParserSelector> >* selectors);
332
StyleRuleBase
* createFontFaceRule();
333
StyleRuleBase
* createPageRule(PassOwnPtr<CSSParserSelector> pageSelector);
334
StyleRuleBase
* createRegionRule(Vector<OwnPtr<CSSParserSelector> >* regionSelector, RuleList* rules)
[
all
...]
Completed in 207 milliseconds
1
2