OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CSSMappedAttributeDeclaration
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/dom/
CSSMappedAttributeDeclaration.cpp
24
#include "
CSSMappedAttributeDeclaration
.h"
30
CSSMappedAttributeDeclaration
::~
CSSMappedAttributeDeclaration
()
CSSMappedAttributeDeclaration.h
34
class
CSSMappedAttributeDeclaration
: public CSSMutableStyleDeclaration {
36
static PassRefPtr<
CSSMappedAttributeDeclaration
> create()
38
return adoptRef(new
CSSMappedAttributeDeclaration
(0));
41
virtual ~
CSSMappedAttributeDeclaration
();
51
CSSMappedAttributeDeclaration
(CSSRule* parentRule)
Attribute.h
28
#include "
CSSMappedAttributeDeclaration
.h"
75
CSSMappedAttributeDeclaration
* decl() const { return m_styleDecl.get(); }
76
void setDecl(PassRefPtr<
CSSMappedAttributeDeclaration
> decl) { m_styleDecl = decl; }
89
Attribute(const QualifiedName& name, const AtomicString& value, bool isMappedAttribute,
CSSMappedAttributeDeclaration
* styleDecl)
98
Attribute(const AtomicString& name, const AtomicString& value, bool isMappedAttribute,
CSSMappedAttributeDeclaration
* styleDecl)
116
RefPtr<
CSSMappedAttributeDeclaration
> m_styleDecl;
StyledElement.h
34
class
CSSMappedAttributeDeclaration
;
50
static
CSSMappedAttributeDeclaration
* getMappedAttributeDecl(MappedAttributeEntry, const QualifiedName& name, const AtomicString& value);
51
static void setMappedAttributeDecl(MappedAttributeEntry, const QualifiedName& name, const AtomicString& value,
CSSMappedAttributeDeclaration
*);
54
static
CSSMappedAttributeDeclaration
* getMappedAttributeDecl(MappedAttributeEntry, Attribute*);
55
static void setMappedAttributeDecl(MappedAttributeEntry, Attribute*,
CSSMappedAttributeDeclaration
*);
StyledElement.cpp
69
typedef HashMap<MappedAttributeKey,
CSSMappedAttributeDeclaration
*, MappedAttributeHash, MappedAttributeKeyTraits> MappedAttributeDecls;
73
CSSMappedAttributeDeclaration
* StyledElement::getMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr)
80
CSSMappedAttributeDeclaration
* StyledElement::getMappedAttributeDecl(MappedAttributeEntry type, const QualifiedName& name, const AtomicString& value)
87
void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr,
CSSMappedAttributeDeclaration
* decl)
94
void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, const QualifiedName& name, const AtomicString& value,
CSSMappedAttributeDeclaration
* decl)
170
CSSMappedAttributeDeclaration
* decl = getMappedAttributeDecl(entry, attr);
181
// parseMappedAttribute() might create a
CSSMappedAttributeDeclaration
on the attribute.
394
RefPtr<
CSSMappedAttributeDeclaration
> decl =
CSSMappedAttributeDeclaration
::create();
/external/webkit/Source/WebCore/html/
HTMLTableElement.h
102
RefPtr<
CSSMappedAttributeDeclaration
> m_paddingDecl;
HTMLTableElement.cpp
455
CSSMappedAttributeDeclaration
* decl = getMappedAttributeDecl(ePersistent, tableborderAttr, borderValue);
457
decl =
CSSMappedAttributeDeclaration
::create().releaseRef(); // This single ref pins us in the table until the document dies.
513
CSSMappedAttributeDeclaration
* decl = getMappedAttributeDecl(ePersistent, cellborderAttr, cellborderValue);
515
decl =
CSSMappedAttributeDeclaration
::create().releaseRef(); // This single ref pins us in the table until the document dies.
574
m_paddingDecl =
CSSMappedAttributeDeclaration
::create();
599
CSSMappedAttributeDeclaration
* decl = getMappedAttributeDecl(ePersistent, rulesAttr, rulesValue);
601
decl =
CSSMappedAttributeDeclaration
::create().releaseRef(); // This single ref pins us in the table until the document dies.
/external/webkit/Source/WebCore/
Android.mk
111
dom/
CSSMappedAttributeDeclaration
.cpp \
[
all
...]
Completed in 662 milliseconds