HomeSort by relevance Sort by last modified time
    Searched full:qualifiedname (Results 251 - 275 of 727) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/svg/
SVGSVGElement.h 52 static PassRefPtr<SVGSVGElement> create(const QualifiedName&, Document*);
132 SVGSVGElement(const QualifiedName&, Document*);
145 virtual void svgAttributeChanged(const QualifiedName&);
146 virtual void synchronizeProperty(const QualifiedName&);
SVGStyledTransformableElement.cpp 37 SVGStyledTransformableElement::SVGStyledTransformableElement(const QualifiedName& tagName, Document* document)
84 void SVGStyledTransformableElement::svgAttributeChanged(const QualifiedName& attrName)
99 void SVGStyledTransformableElement::synchronizeProperty(const QualifiedName& attrName)
107 bool SVGStyledTransformableElement::isKnownAttribute(const QualifiedName& attrName)
SVGTRefElement.cpp 38 inline SVGTRefElement::SVGTRefElement(const QualifiedName& tagName, Document* document)
43 PassRefPtr<SVGTRefElement> SVGTRefElement::create(const QualifiedName& tagName, Document* document)
68 void SVGTRefElement::svgAttributeChanged(const QualifiedName& attrName)
79 void SVGTRefElement::synchronizeProperty(const QualifiedName& attrName)
SVGTextElement.cpp 40 inline SVGTextElement::SVGTextElement(const QualifiedName& tagName, Document* doc)
45 PassRefPtr<SVGTextElement> SVGTextElement::create(const QualifiedName& tagName, Document* document)
124 void SVGTextElement::svgAttributeChanged(const QualifiedName& attrName)
138 void SVGTextElement::synchronizeProperty(const QualifiedName& attrName)
SVGTextPathElement.cpp 39 inline SVGTextPathElement::SVGTextPathElement(const QualifiedName& tagName, Document* document)
47 PassRefPtr<SVGTextPathElement> SVGTextPathElement::create(const QualifiedName& tagName, Document* document)
75 void SVGTextPathElement::svgAttributeChanged(const QualifiedName& attrName)
90 void SVGTextPathElement::synchronizeProperty(const QualifiedName& attrName)
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
createAttributeNS01.java 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a
36 * if qualifiedName is malformed.
38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on
40 * qualifiedName as "prefix::local". Method should raise
createDocument01.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
36 * if parameter qualifiedName is malformed.
39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype)
41 * the literal string "http://www.ecommerce.org/", qualifiedName as
createDocument03.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
70 String qualifiedName = "namespaceURI:x";
82 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocument04.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
72 String qualifiedName = "namespaceURI:x";
85 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocumentType01.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
36 * qualifiedName is malformed.
39 * Invoke method createDocumentType(qualifiedName,publicId,systemId)
40 * on the retrieved DOMImplementation with qualifiedName being the literal
createElementNS01.java 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a
36 * qualifiedName is malformed.
38 * Invoke method createElementNS(namespaceURI,qualifiedName) on
40 * "http://www.ecommerce.org/", and qualifiedName as "prefix::local".
documentcreateattributeNS05.java 34 * The method createAttributeNS raises a NAMESPACE_ERR if the qualifiedName has a prefix and
38 * namespaceURI, and a valid qualifiedName. Check if a NAMESPACE_ERR is thrown.
74 String qualifiedName = "abc:def";
82 attribute = newDoc.createAttributeNS(namespaceURI, qualifiedName);
documentcreateattributeNS06.java 34 * The method createAttributeNS raises a NAMESPACE_ERR if the qualifiedName has a prefix that
37 * Invoke the createAttributeNS method on a new DOMImplementation object with the qualifiedName
74 String qualifiedName = "xml:root";
82 attribute = newDoc.createAttributeNS(namespaceURI, qualifiedName);
documentcreateattributeNS07.java 47 * The method createAttributeNS raises a NAMESPACE_ERR if the qualifiedName is xmlns and
51 * the qualifiedName as xmlns and namespaceURI as http://www.W3.org/2000/xmlns.
83 String qualifiedName = "xmlns";
89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
documentcreateelementNS01.java 47 * The method createElementNS creates an element of the given valid qualifiedName and NamespaceURI.
50 * and qualifiedName. Check if a valid Element object is returned with the same node attributes.
81 String qualifiedName = "XML:XML";
88 element = doc.createElementNS(namespaceURI, qualifiedName);
documentcreateelementNS02.java 47 * The method createElementNS creates an element of the given valid qualifiedName and NamespaceURI.
50 * and a qualifiedName with an invalid character and check if an INVALID_CHARACTER_ERR is thrown.
82 String qualifiedName = "^^";
88 element = doc.createElementNS(namespaceURI, qualifiedName);
documentcreateelementNS05.java 47 * The method createElementNS raises a NAMESPACE_ERR if the qualifiedName has a prefix and
51 * namespaceURI, and a valid qualifiedName. Check if a NAMESPACE_ERR is thrown.
83 String qualifiedName = "null:xml";
89 element = doc.createElementNS(namespaceURI, qualifiedName);
documentcreateelementNS06.java 34 * The method createElementNS raises a NAMESPACE_ERR if the qualifiedName
39 * the qualifiedName as xml:root and namespaceURI as http://www.w3.org/xml/1998/namespace
75 String qualifiedName = "xml:root";
83 element = newDoc.createElementNS(namespaceURI, qualifiedName);
domimplementationcreatedocument04.java 47 * The createDocument method should throw a NAMESPACE_ERR if the qualifiedName has
51 * qualifiedName that has a namespace prefix using this DOMImplementation.
85 String qualifiedName = "dom:root";
94 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
domimplementationcreatedocument05.java 47 * The createDocument method should throw a NAMESPACE_ERR if the qualifiedName has
52 * http://www.w3.org/xml/1998/namespace and a qualifiedName that has the prefix xml
84 String qualifiedName = "xml:root";
93 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
domimplementationcreatedocumenttype01.java 34 * The method createDocumentType with valid values for qualifiedName, publicId and
37 * Invoke createDocument on this DOMImplementation with a valid qualifiedName and different
70 String qualifiedName = "test:root";
87 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype02.java 47 * The method createDocumentType with valid values for qualifiedName, publicId and
85 String qualifiedName;
105 qualifiedName = (String) qualifiedNames.get(indexN10077);
106 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype04.java 47 * The method createDocumentType should raise a INVALID_CHARACTER_ERR if the qualifiedName
83 String qualifiedName;
103 qualifiedName = (String) qualifiedNames.get(indexN10073);
108 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
setAttributeNS01.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,Value)" method raises a
39 * An exception should be raised since the "qualifiedName" has an invalid
70 String qualifiedName = "emp:qual?name";
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS05.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method adds a new attribute.
36 * on the element, its prefix is changed to be the prefix part of the "qualifiedName",
73 String qualifiedName = "emp:newAttr";
83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "<newValue>");

Completed in 150 milliseconds

<<11121314151617181920>>