HomeSort by relevance Sort by last modified time
    Searched refs:StyledElement (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/WebCore/dom/
CSSMappedAttributeDeclaration.cpp 26 #include "StyledElement.h"
33 StyledElement::removeMappedAttributeDecl(m_entryType, m_attrName, m_attrValue);
StyledElement.cpp 25 #include "StyledElement.h"
69 CSSMappedAttributeDeclaration* StyledElement::getMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr)
76 CSSMappedAttributeDeclaration* StyledElement::getMappedAttributeDecl(MappedAttributeEntry type, const QualifiedName& name, const AtomicString& value)
83 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMappedAttributeDeclaration* decl)
90 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, const QualifiedName& name, const AtomicString& value, CSSMappedAttributeDeclaration* decl)
97 void StyledElement::removeMappedAttributeDecl(MappedAttributeEntry entryType, const QualifiedName& attrName, const AtomicString& attrValue)
104 void StyledElement::updateStyleAttribute() const
110 const_cast<StyledElement*>(this)->setAttribute(styleAttr, m_inlineStyleDecl->cssText());
114 StyledElement::StyledElement(const QualifiedName& name, Document* document, ConstructionType type
    [all...]
ClassNodeList.cpp 34 #include "StyledElement.h"
51 return static_cast<StyledElement*>(testNode)->classNames().containsAll(m_classNames);
StyledElement.h 39 class StyledElement : public Element {
41 virtual ~StyledElement();
76 StyledElement(const QualifiedName&, Document*, ConstructionType);
105 inline void StyledElement::invalidateStyleAttribute()
  /external/webkit/WebCore/mathml/
MathMLElement.h 30 #include "StyledElement.h"
34 class MathMLElement : public StyledElement {
MathMLElement.cpp 40 : StyledElement(tagName, document, CreateElementZeroRefCount)
  /external/webkit/WebCore/html/
HTMLElement.h 26 #include "StyledElement.h"
36 class HTMLElement : public StyledElement {
82 static void addHTMLAlignmentToStyledElement(StyledElement*, MappedAttribute*);
117 : StyledElement(tagName, document, type)
HTMLElement.cpp 141 return StyledElement::mapToEntry(attrName, result);
147 return StyledElement::parseMappedAttribute(attr);
612 void HTMLElement::addHTMLAlignmentToStyledElement(StyledElement* element, MappedAttribute* attr)
    [all...]
  /external/webkit/WebCore/wml/
WMLElement.cpp 42 : StyledElement(tagName, document, CreateElementZeroRefCount)
58 return StyledElement::mapToEntry(attrName, result);
66 return StyledElement::parseMappedAttribute(attr);
WMLElement.h 25 #include "StyledElement.h"
30 class WMLElement : public StyledElement {
  /external/webkit/WebCore/svg/
SVGPolyElement.h 51 virtual bool rendererIsNeeded(RenderStyle* style) { return StyledElement::rendererIsNeeded(style); }
SVGStyledElement.h 46 virtual CSSStyleDeclaration* style() { return StyledElement::style(); }
SVGTextPathElement.h 61 virtual bool rendererIsNeeded(RenderStyle* style) { return StyledElement::rendererIsNeeded(style); }
SVGElement.cpp 56 : StyledElement(tagName, document, CreateElementZeroRefCount)
217 StyledElement::parseMappedAttribute(attr);
265 StyledElement::finishParsingChildren();
281 StyledElement::insertedIntoDocument();
306 StyledElement::attributeChanged(attr, preserveDecls);
332 return StyledElement::eventParentNode();
SVGElement.h 27 #include "StyledElement.h"
39 class SVGElement : public StyledElement {
SVGForeignObjectElement.cpp 77 // This function mimics addCSSProperty and StyledElement::attributeChanged.
82 static inline void addCSSPropertyAndNotifyAttributeMap(StyledElement* element, const QualifiedName& name, int cssProperty, const String& value)
190 return StyledElement::childShouldCreateRenderer(child);
SVGSVGElement.h 121 virtual bool rendererIsNeeded(RenderStyle* style) { return StyledElement::rendererIsNeeded(style); }
SVGStyledElement.cpp 75 return StyledElement::rendererIsNeeded(style);
175 // style updates (instead of StyledElement::parseMappedAttribute). We don't
176 // tell StyledElement about the change to avoid parsing the class list twice
180 // id is handled by StyledElement which SVGElement inherits from
254 if (SVGStyledElement* styledElement = static_cast<SVGStyledElement*>(element->isStyled() ? element : 0))
255 styledElement->invalidateCanvasResources();
295 // as StyledElement's mappedAttributeDecls cache, create a new CSSMappedAttributeDeclaration
  /external/webkit/WebCore/bindings/js/
JSElementCustom.cpp 63 markDOMObjectWrapper(markStack, globalData, static_cast<StyledElement*>(element)->inlineStyleDecl());
JSDOMBinding.cpp 380 if (CSSMutableStyleDeclaration* style = static_cast<StyledElement*>(node)->inlineStyleDecl()) {
  /external/webkit/WebCore/css/
CSSStyleSelector.h 65 class StyledElement;
276 StyledElement* m_styledElement;
CSSMutableStyleDeclaration.cpp 34 #include "StyledElement.h"
473 bool isInlineStyleDeclaration = m_node->isStyledElement() && this == static_cast<StyledElement*>(m_node)->inlineStyleDecl();
476 static_cast<StyledElement*>(m_node)->invalidateStyleAttribute();
    [all...]
CSSStyleSelector.cpp 809 m_styledElement = static_cast<StyledElement*>(m_element);
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebelement.cpp 785 CSSStyleDeclaration* style = static_cast<StyledElement*>(m_element)->style();
850 CSSStyleDeclaration* style = static_cast<StyledElement*>(m_element)->style();
    [all...]
  /external/webkit/WebCore/editing/
ReplaceSelectionCommand.cpp 224 RefPtr<StyledElement> holder = createDefaultParagraphElement(m_document.get());
    [all...]

Completed in 405 milliseconds

1 2