/external/doclava/src/com/google/doclava/ |
ContainerInfo.java | 20 public String qualifiedName();
|
/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...] |
DOMImplementationImpl.java | 42 public Document createDocument(String namespaceURI, String qualifiedName, 44 return new DocumentImpl(this, namespaceURI, qualifiedName, doctype, null); 47 public DocumentType createDocumentType(String qualifiedName, 49 return new DocumentTypeImpl(null, qualifiedName, publicId, systemId);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
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...] |
DOMImplementation.idl | 31 [RaisesException] DocumentType createDocumentType(DOMString qualifiedName, 35 [TreatNullAs=NullString] DOMString qualifiedName,
|
Attr.cpp | 41 Attr::Attr(Element& element, const QualifiedName& name) 50 Attr::Attr(Document& document, const QualifiedName& name, const AtomicString& standaloneValue) 60 PassRefPtr<Attr> Attr::create(Element& element, const QualifiedName& name) 67 PassRefPtr<Attr> Attr::create(Document& document, const QualifiedName& name, const AtomicString& value) 106 if (this->qualifiedName() == xmlnsAtom) { 136 m_element->willModifyAttribute(qualifiedName(), this->value(), value); 141 m_element->didModifyAttribute(qualifiedName(), value); 151 RefPtr<Attr> clone = adoptRef(new Attr(document(), qualifiedName(), value())); 167 invalidateNodeListCachesInAncestors(&qualifiedName(), m_element); 177 m_element->willModifyAttribute(qualifiedName(), value(), newValue) [all...] |
/libcore/luni/src/main/java/org/w3c/dom/ |
DOMImplementation.java | 37 * @param qualifiedName The qualified name of the document type to be 46 * <br>NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is 53 public DocumentType createDocumentType(String qualifiedName, 73 * @param qualifiedName The qualified name of the document element to be 80 * If the <code>NamespaceURI</code>, <code>qualifiedName</code>, and 86 * <br>NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is 87 * malformed, if the <code>qualifiedName</code> has a prefix and the 89 * <code>qualifiedName</code> is <code>null</code> and the 91 * if the <code>qualifiedName</code> has a prefix that is "xml" and 106 String qualifiedName, [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
createAttributeNS05.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document with 68 String qualifiedName = "econm:local"; 73 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName); 75 assertEquals("throw_Equals", qualifiedName, attrName);
|
createElementNS05.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createElementNS(namespaceURI,qualifiedName on this document 39 * with namespaceURI as "http://www.nist.gov" and qualifiedName as "gov:faculty". 68 String qualifiedName = "gov:faculty"; 73 newElement = doc.createElementNS(namespaceURI, qualifiedName); 75 assertEquals("throw_Equals", qualifiedName, elementName);
|
createAttributeNS02.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 36 * if qualifiedName has a prefix and namespaceURI is null. 38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document 39 * with namespaceURI being null and qualifiedName contains the prefix "person". 71 String qualifiedName = "prefix:local"; 79 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
createAttributeNS04.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 36 * if qualifiedName has the "xml" prefix and namespaceURI is different 39 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document 40 * with qualifiedName being "xml:attr1 and namespaceURI equals 73 String qualifiedName = "xml:attr1"; 81 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
createDocument02.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 36 * if qualifiedName has a prefix and namespaceURI is null. 38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 39 * this domimplementation with namespaceURI being null and qualifiedName 71 String qualifiedName = "k:local"; 83 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
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);
|
createDocument06.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 36 * if qualifiedName has the "xml" prefix and namespaceURI different from 39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 40 * this domimplementation with qualifiedName "xml:local" 74 String qualifiedName = "xml:local"; 86 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
createDocument07.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 41 * qualifiedName is "y:x" and doctype is null. 70 String qualifiedName = "y:x"; 80 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
createElementNS02.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a 36 * qualifiedName has a prefix and namespaceURI is null. 38 * Invoke method createElementNS(namespaceURI,qualifiedName) on this document 39 * with namespaceURI being null and qualifiedName being "elem:attr1". 71 String qualifiedName = "prefix:local"; 79 newElement = doc.createElementNS(namespaceURI, qualifiedName);
|
createElementNS04.java | 34 * The "createElementNS(namespaceURI,qualifiedName") method for 36 * qualifiedName has an "xml" prefix and the namespaceURI is different 39 * Invoke method createElementNS(namespaceURI,qualifiedName) on this document 40 * with qualifiedName being "xml:element1" and namespaceURI equals the string 73 String qualifiedName = "xml:element1"; 81 newElement = doc.createElementNS(namespaceURI, qualifiedName);
|
documentcreateattributeNS01.java | 37 * namespaceURI, and a qualifiedName without a prefix. This should return a valid Attr 70 String qualifiedName = "test"; 75 attribute = doc.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);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DocumentCreateElementNS.java | 13 * qualifiedName and NamespaceURI. 16 * namespaceURI and qualifiedName. Check if a valid Element object is returned 59 String qualifiedName = "XML:XML"; 66 element = doc.createElementNS(namespaceURI, qualifiedName); 84 String qualifiedName = "^^"; 90 doc.createElementNS(namespaceURI, qualifiedName); 102 String qualifiedName = "null:xml"; 108 doc.createElementNS(namespaceURI, qualifiedName); 123 String qualifiedName = "xml:root"; 132 newDoc.createElementNS(namespaceURI, qualifiedName); [all...] |
DOMImplementationCreateDocument.java | 62 String qualifiedName; 78 qualifiedName = (String) qualifiedNames.get(indexN1006B); 79 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, 90 String qualifiedName = "dom:root"; 99 domImpl.createDocument(namespaceURI, qualifiedName, docType); 111 String qualifiedName = "xml:root"; 120 domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
CreateAttributeNS.java | 82 String qualifiedName = "prefix:local"; 90 doc.createAttributeNS(namespaceURI, qualifiedName); 99 String qualifiedName; 133 qualifiedName = (String) illegalQNames.get(indexN10090); 137 doc.createAttributeNS(namespaceURI, qualifiedName); 147 String qualifiedName = "xml:attr1"; 155 doc.createAttributeNS(namespaceURI, qualifiedName); 164 String qualifiedName = "econm:local"; 169 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName); 171 assertEquals("throw_Equals", qualifiedName, attrName) [all...] |
CreateElementNS.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a Document 35 * should raise NAMESPACE_ERR DOMException if qualifiedName is malformed. 37 * Invoke method createElementNS(namespaceURI,qualifiedName) on the XMLNS 39 * "http://www.ecommerce.org/", and qualifiedName as "prefix::local". Method 100 String qualifiedName = "prefix:local"; 108 doc.createElementNS(namespaceURI, qualifiedName); 117 String qualifiedName; 151 qualifiedName = (String) illegalQNames.get(indexN10098); 156 doc.createElementNS(namespaceURI, qualifiedName); 166 String qualifiedName = "xml:element1" [all...] |
DocumentCreateAttributeNS.java | 40 * namespaceURI, and a qualifiedName without a prefix. This should return a 84 String qualifiedName = "test"; 89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName); 145 String qualifiedName; 159 qualifiedName = (String) qualifiedNames.get(indexN1005A); 164 doc.createAttributeNS(namespaceURI, qualifiedName); 176 String qualifiedName; 186 qualifiedName = (String) qualifiedNames.get(indexN1004E); 193 doc.createAttributeNS(namespaceURI, qualifiedName); 210 String qualifiedName = "abc:def" [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
JTidyDOMImplementation.java | 57 * @param qualifiedName The qualified name of the document type to be 66 * <br>NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is 76 public DocumentType createDocumentType(String qualifiedName, 87 * @param qualifiedName The qualified name of the document element to be 97 * <br>NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is 98 * malformed, if the <code>qualifiedName</code> has a prefix and the 100 * <code>qualifiedName</code> has a prefix that is "xml" and the 118 String qualifiedName,
|