OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stylebase
(Results
1 - 25
of
35
) sorted by null
1
2
/external/webkit/Source/WebCore/css/
StyleList.h
25
#include "
StyleBase
.h"
33
class StyleList : public
StyleBase
{
36
StyleBase
* item(unsigned num) { return num < length() ? m_children[num].get() : 0; }
38
void append(PassRefPtr<
StyleBase
>);
39
void insert(unsigned position, PassRefPtr<
StyleBase
>);
43
StyleList(
StyleBase
* parent) :
StyleBase
(parent) { }
45
Vector<RefPtr<
StyleBase
> > m_children;
StyleBase.cpp
24
#include "
StyleBase
.h"
32
String
StyleBase
::cssText() const
37
void
StyleBase
::checkLoaded()
43
StyleSheet*
StyleBase
::stylesheet()
45
StyleBase
*b = this;
51
KURL
StyleBase
::baseURL() const
56
StyleSheet* sheet = const_cast<
StyleBase
*>(this)->stylesheet();
StyleBase.h
39
class
StyleBase
: public RefCounted<
StyleBase
> {
41
virtual ~
StyleBase
() { }
43
StyleBase
* parent() const { return m_parent; }
44
void setParent(
StyleBase
* parent) { m_parent = parent; }
76
StyleBase
(
StyleBase
* parent)
82
StyleBase
* m_parent;
StyleList.cpp
31
void StyleList::append(PassRefPtr<
StyleBase
> child)
33
StyleBase
* c = child.get();
38
void StyleList::insert(unsigned position, PassRefPtr<
StyleBase
> child)
40
StyleBase
* c = child.get();
CSSRule.h
38
class CSSRule : public
StyleBase
{
67
:
StyleBase
(parent)
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
);
CSSRuleList.cpp
43
StyleBase
* style = list->item(i);
62
StyleBase
* rule = m_list->item(index);
CSSStyleDeclaration.h
24
#include "
StyleBase
.h"
36
class CSSStyleDeclaration : public
StyleBase
{
MediaList.h
24
#include "
StyleBase
.h"
37
class MediaList : public
StyleBase
{
CSSRule.cpp
31
StyleBase
* curr = parent();
MediaList.cpp
61
:
StyleBase
(parentSheet)
67
:
StyleBase
(parentSheet)
85
:
StyleBase
(parentRule)
251
for (
StyleBase
* p = parent(); p; p = p->parent()) {
StyleSheet.cpp
46
StyleSheet::StyleSheet(
StyleBase
* owner, const String& originalURL, const KURL& finalURL)
StyleSheet.h
71
StyleSheet(
StyleBase
* owner, const String& href, const KURL& finalURL);
CSSImportRule.cpp
129
StyleBase
* root = this;
130
for (
StyleBase
* curr = parent(); curr; curr = curr->parent()) {
CSSParser.h
53
class
StyleBase
;
323
Vector<RefPtr<
StyleBase
> > m_parsedStyleObjects;
CSSStyleDeclaration.cpp
37
:
StyleBase
(parent)
CSSMutableStyleDeclaration.cpp
510
StyleBase
* root = this;
511
while (
StyleBase
* parent = root->parent())
[
all
...]
/external/webkit/Source/WebCore/xml/
XSLImportRule.h
30
#include "
StyleBase
.h"
37
class XSLImportRule : public
StyleBase
, private CachedResourceClient {
XSLImportRule.cpp
34
:
StyleBase
(parent)
81
StyleBase
* root = this;
82
StyleBase
* parent;
XSLStyleSheetLibxslt.cpp
87
StyleBase
* rule = item(i);
119
StyleBase
* rule = item(i);
276
StyleBase
* rule = item(i);
/external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.h
50
class
StyleBase
;
57
static CSSStyleSheet* parentStyleSheet(
StyleBase
*);
58
static CSSStyleRule* asCSSStyleRule(
StyleBase
*);
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));
/external/webkit/Source/WebCore/
Android.mk
95
css/
StyleBase
.cpp \
[
all
...]
Completed in 434 milliseconds
1
2