/external/webkit/Source/WebCore/dom/ |
D | StyledElement.cpp | 73 CSSMappedAttributeDeclaration* StyledElement::getMappedAttributeDecl(MappedAttributeEntry entryType… in getMappedAttributeDecl() 80 CSSMappedAttributeDeclaration* StyledElement::getMappedAttributeDecl(MappedAttributeEntry type, con… in getMappedAttributeDecl() 87 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMapp… in setMappedAttributeDecl() 94 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, const QualifiedName& nam… in setMappedAttributeDecl() 101 void StyledElement::removeMappedAttributeDecl(MappedAttributeEntry entryType, const QualifiedName& … in removeMappedAttributeDecl() 108 void StyledElement::updateStyleAttribute() const in updateStyleAttribute() 114 const_cast<StyledElement*>(this)->setAttribute(styleAttr, m_inlineStyleDecl->cssText()); in updateStyleAttribute() 118 StyledElement::~StyledElement() in ~StyledElement() 123 PassRefPtr<Attribute> StyledElement::createAttribute(const QualifiedName& name, const AtomicString&… in createAttribute() 128 void StyledElement::createInlineStyleDecl() in createInlineStyleDecl() [all …]
|
D | StyledElement.h | 37 class StyledElement : public Element { 39 virtual ~StyledElement(); 71 StyledElement(const QualifiedName& name, Document* document, ConstructionType type) in StyledElement() function 99 inline const SpaceSplitString& StyledElement::classNames() const in classNames() 106 inline void StyledElement::invalidateStyleAttribute() in invalidateStyleAttribute()
|
D | CSSMappedAttributeDeclaration.cpp | 33 StyledElement::removeMappedAttributeDecl(m_entryType, m_attrName, m_attrValue); in ~CSSMappedAttributeDeclaration()
|
D | ClassNodeList.cpp | 57 return static_cast<StyledElement*>(testNode)->classNames().containsAll(m_classNames); in nodeMatches()
|
/external/webkit/Source/WebCore/editing/ |
D | RemoveCSSPropertyCommand.h | 37 …static PassRefPtr<RemoveCSSPropertyCommand> create(Document* document, PassRefPtr<StyledElement> e… in create() 43 RemoveCSSPropertyCommand(Document*, PassRefPtr<StyledElement>, CSSPropertyID property); 48 RefPtr<StyledElement> m_element;
|
D | EditingStyle.h | 54 class StyledElement; variable 109 …bool conflictsWithInlineStyleOfElement(StyledElement* element) const { return conflictsWithInlineS… in conflictsWithInlineStyleOfElement() 110 …bool conflictsWithInlineStyleOfElement(StyledElement* element, EditingStyle* extractedStyle, Vecto… in conflictsWithInlineStyleOfElement() 121 void mergeInlineStyleOfElement(StyledElement*); 138 …bool conflictsWithInlineStyleOfElement(StyledElement*, EditingStyle* extractedStyle, Vector<CSSPro…
|
D | CompositeEditCommand.h | 37 class StyledElement; variable 77 void removeCSSProperty(PassRefPtr<StyledElement>, CSSPropertyID);
|
D | RemoveCSSPropertyCommand.cpp | 34 RemoveCSSPropertyCommand::RemoveCSSPropertyCommand(Document* document, PassRefPtr<StyledElement> el… in RemoveCSSPropertyCommand()
|
D | ReplaceSelectionCommand.cpp | 83 PassRefPtr<StyledElement> insertFragmentForTestRendering(Node* context); 85 void restoreTestRenderingNodesToFragment(StyledElement*); 157 RefPtr<StyledElement> holder = insertFragmentForTestRendering(styleNode); in ReplacementFragment() 238 PassRefPtr<StyledElement> ReplacementFragment::insertFragmentForTestRendering(Node* context) in insertFragmentForTestRendering() 244 RefPtr<StyledElement> holder = createDefaultParagraphElement(m_document.get()); in insertFragmentForTestRendering() 273 void ReplacementFragment::restoreTestRenderingNodesToFragment(StyledElement* holder) in restoreTestRenderingNodesToFragment()
|
/external/webkit/Source/WebCore/mathml/ |
D | MathMLElement.cpp | 42 : StyledElement(tagName, document, CreateStyledElement) in MathMLElement() 60 return StyledElement::mapToEntry(attrName, result); in mapToEntry() 87 StyledElement::parseMappedAttribute(attr); in parseMappedAttribute()
|
D | MathMLElement.h | 36 class MathMLElement : public StyledElement {
|
/external/webkit/Source/WebCore/wml/ |
D | WMLElement.cpp | 43 : StyledElement(tagName, document, CreateStyledElement) in WMLElement() 59 return StyledElement::mapToEntry(attrName, result); in mapToEntry() 67 return StyledElement::parseMappedAttribute(attr); in parseMappedAttribute()
|
D | WMLElement.h | 30 class WMLElement : public StyledElement {
|
/external/webkit/Source/WebCore/svg/ |
D | SVGElement.cpp | 58 : StyledElement(tagName, document, CreateSVGElement) in SVGElement() 124 StyledElement::removedFromDocument(); in removedFromDocument() 263 StyledElement::parseMappedAttribute(attr); in parseMappedAttribute() 327 StyledElement::finishParsingChildren(); in finishParsingChildren() 343 StyledElement::insertedIntoDocument(); in insertedIntoDocument() 368 StyledElement::attributeChanged(attr, preserveDecls); in attributeChanged()
|
D | SVGTSpanElement.cpp | 71 return StyledElement::rendererIsNeeded(style); in rendererIsNeeded()
|
D | SVGStyledElement.h | 60 virtual CSSStyleDeclaration* style() { return StyledElement::style(); } in style()
|
D | SVGTRefElement.cpp | 124 return StyledElement::rendererIsNeeded(style); in rendererIsNeeded()
|
D | SVGElement.h | 63 class SVGElement : public StyledElement {
|
D | SVGSVGElement.h | 139 …virtual bool rendererIsNeeded(RenderStyle* style) { return StyledElement::rendererIsNeeded(style);… in rendererIsNeeded()
|
D | SVGTextPathElement.cpp | 150 return StyledElement::rendererIsNeeded(style); in rendererIsNeeded()
|
/external/webkit/Source/WebCore/html/ |
D | HTMLElement.h | 34 class HTMLElement : public StyledElement { 80 static void addHTMLAlignmentToStyledElement(StyledElement*, Attribute*); 126 : StyledElement(tagName, document, CreateHTMLElement) in HTMLElement()
|
D | HTMLElement.cpp | 130 return StyledElement::mapToEntry(attrName, result); in mapToEntry() 136 return StyledElement::parseMappedAttribute(attr); in parseMappedAttribute() 615 void HTMLElement::addHTMLAlignmentToStyledElement(StyledElement* element, Attribute* attr) in addHTMLAlignmentToStyledElement() 789 return StyledElement::rendererIsNeeded(style); in rendererIsNeeded() 838 StyledElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta); in childrenChanged()
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebRenderLayer.mm | 35 #import <WebCore/StyledElement.h> 61 StyledElement* styledElement = static_cast<StyledElement*>(node);
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSElementCustom.cpp | 66 …markDOMObjectWrapper(markStack, globalData, static_cast<StyledElement*>(element)->inlineStyleDecl(… in markChildren()
|
/external/webkit/Source/WebCore/css/ |
D | CSSStyleSelector.h | 69 class StyledElement; variable 351 StyledElement* m_styledElement;
|