/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
DocumentTypeImpl.java | 36 private String qualifiedName; 42 public DocumentTypeImpl(DocumentImpl document, String qualifiedName, 46 if (qualifiedName == null || "".equals(qualifiedName)) { 47 throw new DOMException(DOMException.NAMESPACE_ERR, qualifiedName); 50 int prefixSeparator = qualifiedName.lastIndexOf(":"); 52 String prefix = qualifiedName.substring(0, prefixSeparator); 53 String localName = qualifiedName.substring(prefixSeparator + 1); 56 throw new DOMException(DOMException.NAMESPACE_ERR, qualifiedName); 60 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, qualifiedName); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
QualifiedName.cpp | 33 #include "core/dom/QualifiedName.h" 46 struct QualifiedNameHashTraits : public HashTraits<QualifiedName::QualifiedNameImpl*> { 50 typedef HashSet<QualifiedName::QualifiedNameImpl*, QualifiedNameHash, QualifiedNameHashTraits> QNameSet; 57 static bool equal(QualifiedName::QualifiedNameImpl* name, const QualifiedNameComponents& c) 61 static void translate(QualifiedName::QualifiedNameImpl*& location, const QualifiedNameComponents& components, unsigned) 63 location = QualifiedName::QualifiedNameImpl::create(components.m_prefix, components.m_localName, components.m_namespace).leakRef(); 69 QualifiedName::QualifiedName(const AtomicString& p, const AtomicString& l, const AtomicString& n) 80 QualifiedName::~QualifiedName() [all...] |
QualifiedName.h | 38 class QualifiedName { 69 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI); 70 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(hashTableDeletedValue()) { } 72 ~QualifiedName(); 74 QualifiedName() : m_impl(0) { } 77 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { ref(); } 78 const QualifiedName& operator=(const QualifiedName& other) { other.ref(); deref(); m_impl = other.m_impl; return *this; } 80 bool operator==(const QualifiedName& other) const { return m_impl == other.m_impl; [all...] |
Attribute.h | 28 #include "core/dom/QualifiedName.h" 37 Attribute(const QualifiedName& name, const AtomicString& value) 51 const QualifiedName& name() const { return m_name; } 54 bool matches(const QualifiedName&) const; 62 void parserSetName(const QualifiedName& name) { m_name = name; } 71 QualifiedName m_name; 75 inline bool Attribute::matches(const QualifiedName& qualifiedName) const 77 if (qualifiedName.localName() != localName()) 79 return qualifiedName.prefix() == starAtom || qualifiedName.namespaceURI() == namespaceURI() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGFEDiffuseLightingElement.h | 35 static PassRefPtr<SVGFEDiffuseLightingElement> create(const QualifiedName&, Document*); 36 void lightElementAttributeChanged(const SVGFELightElement*, const QualifiedName&); 39 SVGFEDiffuseLightingElement(const QualifiedName&, Document*); 41 bool isSupportedAttribute(const QualifiedName&); 42 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 43 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&); 44 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGFESpecularLightingElement.h | 34 static PassRefPtr<SVGFESpecularLightingElement> create(const QualifiedName&, Document*); 35 void lightElementAttributeChanged(const SVGFELightElement*, const QualifiedName&); 38 SVGFESpecularLightingElement(const QualifiedName&, Document*); 40 bool isSupportedAttribute(const QualifiedName&); 41 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 42 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&); 43 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGFEDropShadowElement.h | 31 static PassRefPtr<SVGFEDropShadowElement> create(const QualifiedName&, Document*); 36 SVGFEDropShadowElement(const QualifiedName&, Document*); 38 bool isSupportedAttribute(const QualifiedName&); 39 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 40 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGFEMergeNodeElement.h | 31 static PassRefPtr<SVGFEMergeNodeElement> create(const QualifiedName&, Document*); 34 SVGFEMergeNodeElement(const QualifiedName&, Document*); 36 bool isSupportedAttribute(const QualifiedName&); 37 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 38 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGFEOffsetElement.h | 32 static PassRefPtr<SVGFEOffsetElement> create(const QualifiedName&, Document*); 35 SVGFEOffsetElement(const QualifiedName&, Document*); 37 bool isSupportedAttribute(const QualifiedName&); 38 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 39 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGFETileElement.h | 31 static PassRefPtr<SVGFETileElement> create(const QualifiedName&, Document*); 34 SVGFETileElement(const QualifiedName&, Document*); 36 bool isSupportedAttribute(const QualifiedName&); 37 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 38 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGLinearGradientElement.h | 33 static PassRefPtr<SVGLinearGradientElement> create(const QualifiedName&, Document*); 38 SVGLinearGradientElement(const QualifiedName&, Document*); 40 bool isSupportedAttribute(const QualifiedName&); 41 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 42 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGRadialGradientElement.h | 33 static PassRefPtr<SVGRadialGradientElement> create(const QualifiedName&, Document*); 38 SVGRadialGradientElement(const QualifiedName&, Document*); 40 bool isSupportedAttribute(const QualifiedName&); 41 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 42 virtual void svgAttributeChanged(const QualifiedName&);
|
SVGElement.h | 47 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap, const QualifiedName& attrName); 51 static PassRefPtr<SVGElement> create(const QualifiedName&, Document*); 60 bool isKnownAttribute(const QualifiedName&); 61 static bool isAnimatableCSSProperty(const QualifiedName&); 85 virtual void svgAttributeChanged(const QualifiedName&); 87 virtual void animatedPropertyTypeForAttribute(const QualifiedName&, Vector<AnimatedPropertyType>&); 110 void synchronizeAnimatedSVGAttribute(const QualifiedName&) const; 123 bool isAnimatableAttribute(const QualifiedName&) const; 138 SVGElement(const QualifiedName&, Document*, ConstructionType = CreateSVGElement); 140 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE [all...] |
SVGFEMorphologyElement.h | 61 static PassRefPtr<SVGFEMorphologyElement> create(const QualifiedName&, Document*); 66 SVGFEMorphologyElement(const QualifiedName&, Document*); 68 bool isSupportedAttribute(const QualifiedName&); 69 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 70 virtual bool setFilterEffectAttribute(FilterEffect*, const QualifiedName&); 71 virtual void svgAttributeChanged(const QualifiedName&);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/ |
SVGAttributeToPropertyMap.h | 34 typedef HashMap<QualifiedName, OwnPtr<PropertiesVector> > AttributeToPropertiesMap; 44 void animatedPropertiesForAttribute(SVGElement* contextElement, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >&); 45 void animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>&); 48 bool synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName); 51 PropertiesVector* getOrCreatePropertiesVector(const QualifiedName&); 52 void synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo*); 53 PassRefPtr<SVGAnimatedProperty> animatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo*);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLLIElement.h | 33 static PassRefPtr<HTMLLIElement> create(const QualifiedName&, Document*); 36 HTMLLIElement(const QualifiedName&, Document*); 38 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; 39 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 40 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLBRElement.h | 34 static PassRefPtr<HTMLBRElement> create(const QualifiedName&, Document*); 39 HTMLBRElement(const QualifiedName&, Document*); 41 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 42 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLDivElement.h | 33 static PassRefPtr<HTMLDivElement> create(const QualifiedName&, Document*); 36 HTMLDivElement(const QualifiedName&, Document*); 39 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 40 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLFontElement.h | 33 static PassRefPtr<HTMLFontElement> create(const QualifiedName&, Document*); 38 HTMLFontElement(const QualifiedName&, Document*); 40 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 41 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLHRElement.h | 33 static PassRefPtr<HTMLHRElement> create(const QualifiedName&, Document*); 38 HTMLHRElement(const QualifiedName&, Document*); 40 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 41 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLParagraphElement.h | 33 static PassRefPtr<HTMLParagraphElement> create(const QualifiedName&, Document*); 36 HTMLParagraphElement(const QualifiedName&, Document*); 38 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 39 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLPreElement.h | 32 static PassRefPtr<HTMLPreElement> create(const QualifiedName&, Document*); 35 HTMLPreElement(const QualifiedName&, Document*); 37 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 38 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLTableCaptionElement.h | 35 static PassRefPtr<HTMLTableCaptionElement> create(const QualifiedName&, Document*); 38 HTMLTableCaptionElement(const QualifiedName&, Document*); 40 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 41 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
HTMLUListElement.h | 33 static PassRefPtr<HTMLUListElement> create(const QualifiedName&, Document*); 36 HTMLUListElement(const QualifiedName&, Document*); 38 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 39 virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SiblingTraversalStrategies.h | 41 bool isFirstOfType(Element*, const QualifiedName&) const; 42 bool isLastOfType(Element*, const QualifiedName&) const; 46 int countElementsOfTypeBefore(Element*, const QualifiedName&) const; 47 int countElementsOfTypeAfter(Element*, const QualifiedName&) const; 60 inline bool DOMSiblingTraversalStrategy::isFirstOfType(Element* element, const QualifiedName& type) const 69 inline bool DOMSiblingTraversalStrategy::isLastOfType(Element* element, const QualifiedName& type) const 93 inline int DOMSiblingTraversalStrategy::countElementsOfTypeBefore(Element* element, const QualifiedName& type) const 113 inline int DOMSiblingTraversalStrategy::countElementsOfTypeAfter(Element* element, const QualifiedName& type) const 133 bool isFirstOfType(Element*, const QualifiedName&) const; 134 bool isLastOfType(Element*, const QualifiedName&) const [all...] |