Searched refs:importedName (Results 1 – 1 of 1) sorted by relevance
/libcore/luni/src/test/java/libcore/xml/ |
D | DomTest.java | 910 Element importedName = (Element) newDocument.importNode(name, false); in testUserDataHandlerNotifiedOfShallowImports() local 911 Attr importedStandard = importedName.getAttributeNode("a:standard"); in testUserDataHandlerNotifiedOfShallowImports() 914 expected.add(notification(NODE_IMPORTED, "a", "apple", name, importedName)); in testUserDataHandlerNotifiedOfShallowImports() 915 expected.add(notification(NODE_IMPORTED, "b", "banana", name, importedName)); in testUserDataHandlerNotifiedOfShallowImports() 931 Element importedName = (Element) newDocument.importNode(name, true); in testUserDataHandlerNotifiedOfDeepImports() local 932 Attr importedStandard = importedName.getAttributeNode("a:standard"); in testUserDataHandlerNotifiedOfDeepImports() 933 Text importedWaffles = (Text) importedName.getChildNodes().item(0); in testUserDataHandlerNotifiedOfDeepImports() 936 expected.add(notification(NODE_IMPORTED, "a", "apple", name, importedName)); in testUserDataHandlerNotifiedOfDeepImports() 937 expected.add(notification(NODE_IMPORTED, "b", "banana", name, importedName)); in testUserDataHandlerNotifiedOfDeepImports()
|