Home
last modified time | relevance | path

Searched refs:NODE_IMPORTED (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/org/w3c/dom/
DUserDataHandler.java34 public static final short NODE_IMPORTED = 2; field
/libcore/luni/src/test/java/libcore/xml/
DDomTest.java63 import static org.w3c.dom.UserDataHandler.NODE_IMPORTED;
914 expected.add(notification(NODE_IMPORTED, "a", "apple", name, importedName)); in testUserDataHandlerNotifiedOfShallowImports()
915 expected.add(notification(NODE_IMPORTED, "b", "banana", name, importedName)); in testUserDataHandlerNotifiedOfShallowImports()
916 expected.add(notification(NODE_IMPORTED, "c", "cat", standard, importedStandard)); in testUserDataHandlerNotifiedOfShallowImports()
936 expected.add(notification(NODE_IMPORTED, "a", "apple", name, importedName)); in testUserDataHandlerNotifiedOfDeepImports()
937 expected.add(notification(NODE_IMPORTED, "b", "banana", name, importedName)); in testUserDataHandlerNotifiedOfDeepImports()
938 expected.add(notification(NODE_IMPORTED, "c", "cat", standard, importedStandard)); in testUserDataHandlerNotifiedOfDeepImports()
939 expected.add(notification(NODE_IMPORTED, "d", "dog", waffles, importedWaffles)); in testUserDataHandlerNotifiedOfDeepImports()
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DDocumentImpl.java233 return cloneOrImportNode(UserDataHandler.NODE_IMPORTED, importedNode, deep); in importNode()