/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | getNamedItemNS04.java | 65 NamedNodeMap notations; in runTest() local 71 notations = docType.getNotations(); in runTest() 72 assertNotNull("notationsNotNull", notations); in runTest() 73 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1"); in runTest()
|
D | hc_notationsremovenameditemns1.java | 60 NamedNodeMap notations; in runTest() local 70 notations = docType.getNotations(); in runTest() 71 assertNotNull("notationsNotNull", notations); in runTest() 74 retval = notations.removeNamedItemNS("http://www.w3.org/1999/xhtml", "alpha"); in runTest()
|
D | hc_notationssetnameditemns1.java | 60 NamedNodeMap notations; in runTest() local 71 notations = docType.getNotations(); in runTest() 72 assertNotNull("notationsNotNull", notations); in runTest() 76 retval = notations.setNamedItemNS(elem); in runTest()
|
D | namednodemapsetnameditemns05.java | 75 NamedNodeMap notations; in runTest() local 85 notations = docType.getNotations(); in runTest() 86 assertNotNull("notationsNotNull", notations); in runTest() 88 notation = (Notation) notations.getNamedItem("notation1"); in runTest() 103 newNode = notations.setNamedItemNS(notation); in runTest()
|
D | namednodemapremovenameditemns05.java | 75 NamedNodeMap notations; in runTest() local 83 notations = docType.getNotations(); in runTest() 84 assertNotNull("notationsNotNull", notations); in runTest() 102 removedNode = notations.removeNamedItemNS(nullNS, "notation1"); in runTest()
|
D | namednodemapgetnameditemns01.java | 75 NamedNodeMap notations; in runTest() local 86 notations = docType.getNotations(); in runTest() 87 assertNotNull("notationsNotNull", notations); in runTest() 90 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1"); in runTest()
|
D | namednodemapsetnameditemns11.java | 75 NamedNodeMap notations; in runTest() local 85 notations = docType.getNotations(); in runTest() 86 assertNotNull("notationsNotNull", notations); in runTest() 87 notation = (Notation) notations.getNamedItem("notation1"); in runTest()
|
D | namednodemapsetnameditemns09.java | 74 NamedNodeMap notations; in runTest() local 80 notations = docType.getNotations(); in runTest() 96 newNode = notations.setNamedItemNS(attr); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | nodenotationnodeattributes.java | 64 NamedNodeMap notations; in runTest() local 70 notations = docType.getNotations(); in runTest() 71 assertNotNull("notationsNotNull", notations); in runTest() 72 notationNode = notations.getNamedItem("notation1"); in runTest()
|
D | nodenotationnodevalue.java | 65 NamedNodeMap notations; in runTest() local 71 notations = docType.getNotations(); in runTest() 72 assertNotNull("notationsNotNull", notations); in runTest() 73 notationNode = notations.getNamedItem("notation1"); in runTest()
|
D | notationgetsystemidnull.java | 63 NamedNodeMap notations; in runTest() local 69 notations = docType.getNotations(); in runTest() 70 assertNotNull("notationsNotNull", notations); in runTest() 71 notationNode = (Notation) notations.getNamedItem("notation1"); in runTest()
|
D | notationgetpublicid.java | 62 NamedNodeMap notations; in runTest() local 68 notations = docType.getNotations(); in runTest() 69 assertNotNull("notationsNotNull", notations); in runTest() 70 notationNode = (Notation) notations.getNamedItem("notation1"); in runTest()
|
D | notationgetpublicidnull.java | 67 NamedNodeMap notations; in runTest() local 73 notations = docType.getNotations(); in runTest() 74 assertNotNull("notationsNotNull", notations); in runTest() 75 notationNode = (Notation) notations.getNamedItem("notation2"); in runTest()
|
D | notationgetnotationname.java | 63 NamedNodeMap notations; in runTest() local 69 notations = docType.getNotations(); in runTest() 70 assertNotNull("notationsNotNull", notations); in runTest() 71 notationNode = (Notation) notations.getNamedItem("notation1"); in runTest()
|
D | nodenotationnodetype.java | 64 NamedNodeMap notations; in runTest() local 70 notations = docType.getNotations(); in runTest() 71 assertNotNull("notationsNotNull", notations); in runTest() 72 notationNode = (Notation) notations.getNamedItem("notation1"); in runTest()
|
D | nodenotationnodename.java | 65 NamedNodeMap notations; in runTest() local 71 notations = docType.getNotations(); in runTest() 72 assertNotNull("notationsNotNull", notations); in runTest() 73 notationNode = notations.getNamedItem("notation1"); in runTest()
|
D | notationgetsystemid.java | 66 NamedNodeMap notations; in runTest() local 73 notations = docType.getNotations(); in runTest() 74 assertNotNull("notationsNotNull", notations); in runTest() 75 notationNode = (Notation) notations.getNamedItem("notation2"); in runTest()
|
D | hc_notationsremovenameditem1.java | 62 NamedNodeMap notations; in runTest() local 72 notations = docType.getNotations(); in runTest() 73 assertNotNull("notationsNotNull", notations); in runTest() 78 retval = notations.removeNamedItem("notation1"); in runTest()
|
D | hc_notationssetnameditem1.java | 63 NamedNodeMap notations; in runTest() local 74 notations = docType.getNotations(); in runTest() 75 assertNotNull("notationsNotNull", notations); in runTest() 79 retval = notations.setNamedItem(elem); in runTest()
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | HCNotationsRemoveNamedItemNS.java | 69 NamedNodeMap notations; in testRemoveNamedItemNS() local 77 notations = docType.getNotations(); in testRemoveNamedItemNS() 78 assertNotNull("notationsNotNull", notations); in testRemoveNamedItemNS() 81 notations.removeNamedItemNS("http://www.w3.org/1999/xhtml", in testRemoveNamedItemNS()
|
D | HCNotationsSetNamedItemNS.java | 70 NamedNodeMap notations; in testNotationsSetNamedItemNS() local 79 notations = docType.getNotations(); in testNotationsSetNamedItemNS() 80 assertNotNull("notationsNotNull", notations); in testNotationsSetNamedItemNS() 84 notations.setNamedItemNS(elem); in testNotationsSetNamedItemNS()
|
/libcore/expectations/ |
D | icebox.txt | 39 substring: "This implementation does not parse notations"
|