/external/webkit/WebCore/dom/ |
D | QualifiedName.h | 35 class QualifiedName : public FastAllocBase { 59 …QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& names… 60 …QualifiedName(const AtomicString& prefix, const char* localName, const AtomicString& namespaceURI); 61 ~QualifiedName() { deref(); } in ~QualifiedName() 63 QualifiedName() : m_impl(0) { } in QualifiedName() function 66 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); } in QualifiedName() function 67 …const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.… 69 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; } 70 bool operator!=(const QualifiedName& other) const { return !(*this == other); } 72 …bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == … in matches() [all …]
|
D | QualifiedName.cpp | 35 typedef HashSet<QualifiedName::QualifiedNameImpl*, QualifiedNameHash> QNameSet; 42 static bool equal(QualifiedName::QualifiedNameImpl* name, const QualifiedNameComponents& c) in equal() 46 …static void translate(QualifiedName::QualifiedNameImpl*& location, const QualifiedNameComponents& … in translate() 48 …location = QualifiedName::QualifiedNameImpl::create(components.m_prefix, components.m_localName, c… in translate() 54 void QualifiedName::init(const AtomicString& p, const AtomicString& l, const AtomicString& n) in init() 65 QualifiedName::QualifiedName(const AtomicString& p, const AtomicString& l, const AtomicString& n) in QualifiedName() function in WebCore::QualifiedName 70 QualifiedName::QualifiedName(const AtomicString& p, const char* l, const AtomicString& n) in QualifiedName() function in WebCore::QualifiedName 75 void QualifiedName::deref() in deref() 87 String QualifiedName::toString() const in toString() 96 DEFINE_GLOBAL(QualifiedName, anyName, nullAtom, starAtom, starAtom) in DEFINE_GLOBAL() argument [all …]
|
D | Element.h | 47 static PassRefPtr<Element> create(const QualifiedName&, Document*); 102 bool hasAttribute(const QualifiedName&) const; 103 const AtomicString& getAttribute(const QualifiedName&) const; 104 void setAttribute(const QualifiedName&, const AtomicString& value, ExceptionCode&); 105 void removeAttribute(const QualifiedName&, ExceptionCode&); 118 const QualifiedName& idAttributeName() const; 156 const QualifiedName& tagQName() const { return m_tagName; } in tagQName() 158 bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); } in hasTagName() 162 …bool hasLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localN… in hasLocalName() 179 void setAttribute(const QualifiedName&, const AtomicString& value); [all …]
|
D | StyledElement.h | 47 …bool isMappedAttribute(const QualifiedName& name) const { MappedAttributeEntry res = eNone; mapToE… in isMappedAttribute() 55 …ributeDeclaration* getMappedAttributeDecl(MappedAttributeEntry, const QualifiedName& name, const A… 56 …static void setMappedAttributeDecl(MappedAttributeEntry, const QualifiedName& name, const AtomicSt… 57 …static void removeMappedAttributeDecl(MappedAttributeEntry, const QualifiedName& name, const Atomi… 71 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const; 73 virtual PassRefPtr<Attribute> createAttribute(const QualifiedName&, const AtomicString& value); 76 StyledElement(const QualifiedName&, Document*, ConstructionType);
|
D | NamedAttrMap.h | 59 PassRefPtr<Node> getNamedItem(const QualifiedName& name) const; 60 PassRefPtr<Node> removeNamedItem(const QualifiedName& name, ExceptionCode&); 73 Attribute* getAttributeItem(const QualifiedName&) const; 95 void removeAttribute(const QualifiedName&); 113 inline Attribute* NamedNodeMap::getAttributeItem(const QualifiedName& name) const in getAttributeItem() 132 const QualifiedName& attrName = m_attributes[i]->name(); in getAttributeItem()
|
D | Attribute.h | 44 static PassRefPtr<Attribute> create(const QualifiedName& name, const AtomicString& value) in create() 55 const QualifiedName& name() const { return m_name; } in name() 74 Attribute(const QualifiedName& name, const AtomicString& value) in Attribute() 84 QualifiedName m_name;
|
D | Element.cpp | 64 Element::Element(const QualifiedName& tagName, Document* document, ConstructionType type) in Element() 70 PassRefPtr<Element> Element::create(const QualifiedName& tagName, Document* document) in create() 125 void Element::removeAttribute(const QualifiedName& name, ExceptionCode& ec) in removeAttribute() 135 void Element::setAttribute(const QualifiedName& name, const AtomicString& value) in setAttribute() 141 void Element::setCStringAttribute(const QualifiedName& name, const char* cStringValue) in setCStringAttribute() 147 void Element::setBooleanAttribute(const QualifiedName& name, bool b) in setBooleanAttribute() 173 bool Element::hasAttribute(const QualifiedName& name) const in hasAttribute() 178 const AtomicString& Element::getAttribute(const QualifiedName& name) const in getAttribute() 493 updateAnimatedSVGAttribute(QualifiedName(nullAtom, name, nullAtom)); in getAttribute() 506 return getAttribute(QualifiedName(nullAtom, localName, namespaceURI)); in getAttributeNS() [all …]
|
/external/webkit/WebCore/svg/ |
D | SVGStyledElement.h | 33 …ToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const QualifiedName& attrName); 38 SVGStyledElement(const QualifiedName&, Document*); 48 bool isKnownAttribute(const QualifiedName&); 53 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const; 55 virtual void svgAttributeChanged(const QualifiedName&); 56 virtual void synchronizeProperty(const QualifiedName&); 72 static int cssPropertyIdForSVGAttributeName(const QualifiedName&);
|
D | SVGElement.h | 41 static PassRefPtr<SVGElement> create(const QualifiedName&, Document*); 68 virtual void svgAttributeChanged(const QualifiedName&) { } in svgAttributeChanged() argument 69 virtual void synchronizeProperty(const QualifiedName&) { } in synchronizeProperty() argument 83 SVGElement(const QualifiedName&, Document*); 88 virtual void updateAnimatedSVGAttribute(const QualifiedName&) const;
|
D | SVGStyledElement.cpp | 50 …eToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const QualifiedName& attrName) in mapAttributeToCSSProperty() 57 SVGStyledElement::SVGStyledElement(const QualifiedName& tagName, Document* doc) in SVGStyledElement() 80 int SVGStyledElement::cssPropertyIdForSVGAttributeName(const QualifiedName& attrName) in cssPropertyIdForSVGAttributeName() 152 bool SVGStyledElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const in mapToEntry() 163 const QualifiedName& attrName = attr->name(); in parseMappedAttribute() 184 bool SVGStyledElement::isKnownAttribute(const QualifiedName& attrName) in isKnownAttribute() 194 void SVGStyledElement::svgAttributeChanged(const QualifiedName& attrName) in svgAttributeChanged() 211 void SVGStyledElement::synchronizeProperty(const QualifiedName& attrName) in synchronizeProperty() 287 QualifiedName attributeName(nullAtom, name, nullAtom); in getPresentationAttribute()
|
D | SVGTextPositioningElement.h | 33 SVGTextPositioningElement(const QualifiedName&, Document*); 37 virtual void svgAttributeChanged(const QualifiedName&); 38 virtual void synchronizeProperty(const QualifiedName&); 40 bool isKnownAttribute(const QualifiedName&);
|
D | SVGImageElement.h | 43 SVGImageElement(const QualifiedName&, Document*); 49 virtual void svgAttributeChanged(const QualifiedName&); 50 virtual void synchronizeProperty(const QualifiedName&); 57 virtual const QualifiedName& imageSourceAttributeName() const;
|
D | SVGTextPositioningElement.cpp | 34 SVGTextPositioningElement::SVGTextPositioningElement(const QualifiedName& tagName, Document* doc) in SVGTextPositioningElement() 64 void SVGTextPositioningElement::svgAttributeChanged(const QualifiedName& attrName) in svgAttributeChanged() 75 void SVGTextPositioningElement::synchronizeProperty(const QualifiedName& attrName) in synchronizeProperty() 100 bool SVGTextPositioningElement::isKnownAttribute(const QualifiedName& attrName) in isKnownAttribute()
|
D | SVGTRefElement.h | 33 SVGTRefElement(const QualifiedName&, Document*); 37 virtual void svgAttributeChanged(const QualifiedName&); 38 virtual void synchronizeProperty(const QualifiedName&);
|
D | SVGGElement.h | 37 SVGGElement(const QualifiedName&, Document*); 44 virtual void svgAttributeChanged(const QualifiedName&); 45 virtual void synchronizeProperty(const QualifiedName&);
|
D | SVGPolyElement.h | 39 SVGPolyElement(const QualifiedName&, Document*); 48 virtual void svgAttributeChanged(const QualifiedName&); 49 virtual void synchronizeProperty(const QualifiedName&);
|
/external/webkit/WebCore/html/ |
D | HTMLEmbedElement.h | 32 static PassRefPtr<HTMLEmbedElement> create(const QualifiedName&, Document*); 37 HTMLEmbedElement(const QualifiedName&, Document*); 42 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const; 54 virtual const QualifiedName& imageSourceAttributeName() const;
|
D | HTMLElement.h | 38 static PassRefPtr<HTMLElement> create(const QualifiedName& tagName, Document*); 85 …HTMLElement(const QualifiedName& tagName, Document*, ConstructionType = CreateElementZeroRefCount); 89 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const; 100 static bool isRecognizedTagName(const QualifiedName&); 116 inline HTMLElement::HTMLElement(const QualifiedName& tagName, Document* document, ConstructionType … in HTMLElement()
|
D | HTMLIFrameElement.h | 33 static PassRefPtr<HTMLIFrameElement> create(const QualifiedName&, Document*); 36 HTMLIFrameElement(const QualifiedName&, Document*); 41 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
|
D | HTMLFormCollection.h | 31 class QualifiedName; variable 56 Element* getNamedItem(const QualifiedName& attrName, const AtomicString& name) const; 59 …Element* getNamedFormItem(const QualifiedName& attrName, const String& name, int duplicateNumber) …
|
/external/webkit/WebCore/css/ |
D | CSSSelector.h | 45 CSSSelector(const QualifiedName& qName) in CSSSelector() 204 const QualifiedName& attribute() const; 208 void setAttribute(const QualifiedName& value); 221 QualifiedName m_tag; 250 QualifiedName m_attribute; // used for attribute selector
|
/external/webkit/WebCore/editing/ |
D | SetNodeAttributeCommand.h | 36 …tr<SetNodeAttributeCommand> create(PassRefPtr<Element> element, const QualifiedName& attribute, co… in create() 42 …SetNodeAttributeCommand(PassRefPtr<Element>, const QualifiedName& attribute, const AtomicString& v… 48 QualifiedName m_attribute;
|
/external/webkit/WebCore/wml/ |
D | WMLImageElement.h | 32 WMLImageElement(const QualifiedName& tagName, Document*); 35 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const; 43 virtual const QualifiedName& imageSourceAttributeName() const;
|
D | WMLElement.h | 32 static PassRefPtr<WMLElement> create(const QualifiedName& tagName, Document*); 37 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const; 46 WMLElement(const QualifiedName& tagName, Document*);
|
D | WMLImageElement.cpp | 39 WMLImageElement::WMLImageElement(const QualifiedName& tagName, Document* doc) in WMLImageElement() 50 bool WMLImageElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const in mapToEntry() 70 const QualifiedName& attrName = attr->name(); in parseMappedAttribute() 131 const QualifiedName& WMLImageElement::imageSourceAttributeName() const in imageSourceAttributeName()
|