Home
last modified time | relevance | path

Searched refs:notations (Results 1 – 22 of 22) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/level2/core/
DgetNamedItemNS04.java65 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()
Dhc_notationsremovenameditemns1.java60 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()
Dhc_notationssetnameditemns1.java60 NamedNodeMap notations; in runTest() local
71 notations = docType.getNotations(); in runTest()
72 assertNotNull("notationsNotNull", notations); in runTest()
76 retval = notations.setNamedItemNS(elem); in runTest()
Dnamednodemapsetnameditemns05.java75 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()
Dnamednodemapremovenameditemns05.java75 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()
Dnamednodemapgetnameditemns01.java75 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()
Dnamednodemapsetnameditemns11.java75 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()
Dnamednodemapsetnameditemns09.java74 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/
Dnodenotationnodeattributes.java64 NamedNodeMap notations; in runTest() local
70 notations = docType.getNotations(); in runTest()
71 assertNotNull("notationsNotNull", notations); in runTest()
72 notationNode = notations.getNamedItem("notation1"); in runTest()
Dnodenotationnodevalue.java65 NamedNodeMap notations; in runTest() local
71 notations = docType.getNotations(); in runTest()
72 assertNotNull("notationsNotNull", notations); in runTest()
73 notationNode = notations.getNamedItem("notation1"); in runTest()
Dnotationgetsystemidnull.java63 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()
Dnotationgetpublicid.java62 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()
Dnotationgetpublicidnull.java67 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()
Dnotationgetnotationname.java63 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()
Dnodenotationnodetype.java64 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()
Dnodenotationnodename.java65 NamedNodeMap notations; in runTest() local
71 notations = docType.getNotations(); in runTest()
72 assertNotNull("notationsNotNull", notations); in runTest()
73 notationNode = notations.getNamedItem("notation1"); in runTest()
Dnotationgetsystemid.java66 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()
Dhc_notationsremovenameditem1.java62 NamedNodeMap notations; in runTest() local
72 notations = docType.getNotations(); in runTest()
73 assertNotNull("notationsNotNull", notations); in runTest()
78 retval = notations.removeNamedItem("notation1"); in runTest()
Dhc_notationssetnameditem1.java63 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/
DHCNotationsRemoveNamedItemNS.java69 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()
DHCNotationsSetNamedItemNS.java70 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/
Dicebox.txt39 substring: "This implementation does not parse notations"