OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StyleRule
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
StyleRule.cpp
23
#include "core/css/
StyleRule
.h"
180
unsigned
StyleRule
::averageSizeInBytes()
182
return sizeof(
StyleRule
) + sizeof(CSSSelector) + StylePropertySet::averageSizeInBytes();
185
StyleRule
::
StyleRule
()
190
StyleRule
::
StyleRule
(const
StyleRule
& o)
197
StyleRule
::~
StyleRule
()
[
all
...]
StyleRule.h
96
class
StyleRule
: public StyleRuleBase {
99
static PassRefPtr<
StyleRule
> create() { return adoptRef(new
StyleRule
()); }
101
~
StyleRule
();
111
PassRefPtr<
StyleRule
> copy() const { return adoptRef(new
StyleRule
(*this)); }
116
StyleRule
();
117
StyleRule
(const
StyleRule
&);
281
DEFINE_TYPE_CASTS(
StyleRule
##Type, StyleRuleBase, rule, rule->is##Type##Rule(), rule.is##Type##Rule()
[
all
...]
Completed in 33 milliseconds