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

1 2

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documenttypeinternalSubset01.java 69 String nullNS = null;
73 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
documentgetelementsbytagnameNS01.java 74 String nullNS = null;
78 newDoc = domImpl.createDocument(nullNS, "root", docType);
documentgetelementsbytagnameNS04.java 76 String nullNS = null;
79 childList = doc.getElementsByTagNameNS(nullNS, "0");
documenttypepublicid01.java 69 String nullNS = null;
73 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
elementsetattributens05.java 68 String nullNS = null;
76 element.setAttributeNS(nullNS, "dom:root", "test");
getNamedItemNS03.java 67 String nullNS = null;
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
getNamedItemNS04.java 67 String nullNS = null;
73 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
documentimportnode08.java 78 String nullNS = null;
82 docType = domImpl.createDocumentType("test:root", nullNS, nullNS);
documentimportnode14.java 83 String nullNS = null;
89 newDoc = domImpl.createDocument(nullNS, "staff", nullDocType);
91 attrNode = ((Element) /*Node */imported).getAttributeNodeNS(nullNS, "defaultAttr");
elementgetelementsbytagnamens04.java 82 String nullNS = null;
87 child2 = doc.createElementNS(nullNS, "child");
92 elementList = element.getElementsByTagNameNS(nullNS, "child");
elementhasattributens03.java 81 String nullNS = null;
86 attribute = doc.createAttributeNS(nullNS, "domestic");
88 state = element.hasAttributeNS(nullNS, "domestic");
namednodemapgetnameditemns01.java 80 String nullNS = null;
88 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
90 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
namednodemapremovenameditemns02.java 82 String nullNS = null;
88 attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
89 attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
namednodemapremovenameditemns05.java 77 String nullNS = null;
87 removedNode = entities.removeNamedItemNS(nullNS, "ent1");
102 removedNode = notations.removeNamedItemNS(nullNS, "notation1");
namednodemapsetnameditemns04.java 85 String nullNS = null;
92 docAlt = domImpl.createDocument(nullNS, "newDoc", docType);
93 attrAlt = docAlt.createAttributeNS(nullNS, "street");
nodegetnamespaceuri03.java 82 String nullNS = null;
85 element = doc.createElementNS(nullNS, "elem");
87 attr = doc.createAttributeNS(nullNS, "attr");
nodegetownerdocument02.java 79 String nullNS = null;
83 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS);
namednodemapsetnameditemns03.java 87 String nullNS = null;
97 attr = (Attr) attributesAlt.getNamedItemNS(nullNS, "street");
98 newNode = attributesAlt.removeNamedItemNS(nullNS, "street");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentTypeInternalSubset.java 56 String nullNS = null;
60 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
DocumentTypePublicId.java 75 String nullNS = null;
79 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
NodeGetNamespaceURI.java 81 String nullNS = null;
84 element = doc.createElementNS(nullNS, "elem");
86 attr = doc.createAttributeNS(nullNS, "attr");
ElementGetElementsByTagNameNS.java 68 String nullNS = null;
74 child2 = doc.createElementNS(nullNS, "child");
80 elementList = element.getElementsByTagNameNS(nullNS, "child");
ElementHasAttributeNS.java 105 String nullNS = null;
110 attribute = doc.createAttributeNS(nullNS, "domestic");
112 state = element.hasAttributeNS(nullNS, "domestic");
NodeGetOwnerDocument.java 96 String nullNS = null;
100 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS);
DocumentGetElementsByTagnameNS.java 65 String nullNS = null;
69 newDoc = domImpl.createDocument(nullNS, "root", docType);
99 String nullNS = null;
102 childList = doc.getElementsByTagNameNS(nullNS, "0");

Completed in 2769 milliseconds

1 2