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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/dom/
QualifiedName.h 35 class QualifiedName : public FastAllocBase {
59 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
60 QualifiedName(const AtomicString& prefix, const char* localName, const AtomicString& namespaceURI);
61 ~QualifiedName() { deref(); }
63 QualifiedName() : m_impl(0) { }
66 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); }
67 const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; }
69 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl;
    [all...]
  /external/webkit/WebCore/html/
HTMLTablePartElement.h 35 HTMLTablePartElement(const QualifiedName& tagName, Document* doc)
39 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
HTMLIFrameElement.h 33 static PassRefPtr<HTMLIFrameElement> create(const QualifiedName&, Document*);
36 HTMLIFrameElement(const QualifiedName&, Document*);
41 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
HTMLAudioElement.h 37 HTMLAudioElement(const QualifiedName&, Document*);
HTMLBaseFontElement.h 32 HTMLBaseFontElement(const QualifiedName&, Document*);
HTMLBlockquoteElement.cpp 32 HTMLBlockquoteElement::HTMLBlockquoteElement(const QualifiedName& tagName, Document* document)
HTMLBlockquoteElement.h 32 HTMLBlockquoteElement(const QualifiedName&, Document*);
HTMLDListElement.h 31 HTMLDListElement(const QualifiedName&, Document*);
HTMLDirectoryElement.h 31 HTMLDirectoryElement(const QualifiedName&, Document*);
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;
HTMLMenuElement.h 31 HTMLMenuElement(const QualifiedName&, Document*);
  /external/webkit/WebCore/mathml/
MathMLMathElement.h 36 static PassRefPtr<MathMLMathElement> create(const QualifiedName& tagName, Document*);
39 MathMLMathElement(const QualifiedName& tagName, Document*);
  /external/webkit/WebCore/wml/
WMLBRElement.h 35 WMLBRElement(const QualifiedName& tagName, Document*);
37 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
WMLPElement.h 34 WMLPElement(const QualifiedName& tagName, Document*);
36 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
WMLImageElement.h 32 WMLImageElement(const QualifiedName& tagName, Document*);
35 virtual bool mapToEntry(const QualifiedName&, MappedAttributeEntry&) const;
43 virtual const QualifiedName& imageSourceAttributeName() const;
  /external/webkit/WebCore/svg/
SVGAnimateColorElement.h 33 SVGAnimateColorElement(const QualifiedName&, Document*);
SVGSetElement.h 31 SVGSetElement(const QualifiedName&, Document*);
SVGTRefElement.h 33 SVGTRefElement(const QualifiedName&, Document*);
37 virtual void svgAttributeChanged(const QualifiedName&);
38 virtual void synchronizeProperty(const QualifiedName&);
SVGStyledElement.h 33 void mapAttributeToCSSProperty(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&);
SVGGElement.h 37 SVGGElement(const QualifiedName&, Document*);
44 virtual void svgAttributeChanged(const QualifiedName&);
45 virtual void synchronizeProperty(const QualifiedName&);
SVGAnimateColorElement.cpp 28 SVGAnimateColorElement::SVGAnimateColorElement(const QualifiedName& tagName, Document* doc)
SVGFEFuncAElement.h 30 SVGFEFuncAElement(const QualifiedName&, Document*);
SVGFEFuncBElement.h 30 SVGFEFuncBElement(const QualifiedName&, Document*);
SVGFEFuncGElement.h 30 SVGFEFuncGElement(const QualifiedName&, Document*);
  /external/webkit/WebCore/editing/
SetNodeAttributeCommand.h 30 #include "QualifiedName.h"
36 static PassRefPtr<SetNodeAttributeCommand> create(PassRefPtr<Element> element, const QualifiedName& attribute, const AtomicString& value)
42 SetNodeAttributeCommand(PassRefPtr<Element>, const QualifiedName& attribute, const AtomicString& value);
48 QualifiedName m_attribute;

Completed in 4160 milliseconds

1 2 3 4 5 6 7 8 91011>>