HomeSort by relevance Sort by last modified time
    Searched defs:qualifiedName (Results 26 - 50 of 479) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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);
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);
elementsetattributens04.java 68 String qualifiedName;
83 qualifiedName = (String) qualifiedNames.get(indexN10058);
88 element.setAttributeNS("http://www.w3.org/DOM/Test/L2", qualifiedName, "test");
elementsetattributensurinull.java 47 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method raises a
49 * qualifiedName has a prefix and the namespaceURI is null.
52 * An exception should be raised since the "qualifiedName" has a
83 String qualifiedName = "emp:qualifiedName";
94 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
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");
setAttributeNS02.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method raises a
36 * qualifiedName if malformed.
39 * An exception should be raised since the "qualifiedName" is malformed.
69 String qualifiedName = "emp:";
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS06.java 35 * NAMESPACE_ERR DOMException if the "qualifiedName" has a
71 String qualifiedName = "xml:qualifiedName";
82 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS07.java 35 * NAMESPACE_ERR DOMException if the "qualifiedName" has a
39 * Attempt to add an attribute with a "qualifiedName" of "xmlns" as the
72 String qualifiedName = "xmlns";
83 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNodeNS03.java 71 String qualifiedName = "emp:newAttr";
81 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
createDocument05.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
36 * if parameter qualifiedName contains an illegal character.
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
40 * doctype is null and qualifiedName contains an illegal character from
70 String qualifiedName;
108 qualifiedName = (String) illegalQNames.get(indexN1009A);
114 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);
createDocumentType02.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
36 * qualifiedName contains an illegal character.
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
39 * this domimplementation with qualifiedName containing an illegal character
71 String qualifiedName;
107 qualifiedName = (String) illegalQNames.get(indexN1009A);
113 docType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
createDocumentType03.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
36 * given that qualifiedName is valid and correctly formed.
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
39 * this domimplementation with qualifiedName "prefix:myDoc".
68 String qualifiedName = "prefix:myDoc";
79 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
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);
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);
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);
domimplementationcreatedocument03.java 91 String qualifiedName;
107 qualifiedName = (String) qualifiedNames.get(indexN1006B);
108 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);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
ResolvedTypeVariable.java 48 public String qualifiedName() {
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
ReflectionInflater.java 86 String qualifiedName = tagName;
87 if (prefix != null && qualifiedName.indexOf('.') == -1) {
88 qualifiedName = prefix.concat(qualifiedName);
90 @SuppressWarnings("unchecked") // qualifiedName should correspond to a subclass of T
92 (Constructor<? extends T>) sConstructorMap.get(qualifiedName);
97 @SuppressWarnings("unchecked") // qualifiedName should correspond to a subclass of T
99 (Class<? extends T>) mContext.getClassLoader().loadClass(qualifiedName);
113 + ": Error inflating class " + qualifiedName, e);

Completed in 386 milliseconds

12 3 4 5 6 7 8 91011>>