Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/org/w3c/dom/
DUserDataHandler.java30 public static final short NODE_CLONED = 1; field
/libcore/luni/src/test/java/libcore/xml/
DDomTest.java62 import static org.w3c.dom.UserDataHandler.NODE_CLONED;
870 expected.add(notification(NODE_CLONED, "a", "apple", name, clonedName)); in testUserDataHandlerNotifiedOfShallowClones()
871 expected.add(notification(NODE_CLONED, "b", "banana", name, clonedName)); in testUserDataHandlerNotifiedOfShallowClones()
872 expected.add(notification(NODE_CLONED, "c", "cat", standard, clonedStandard)); in testUserDataHandlerNotifiedOfShallowClones()
891 expected.add(notification(NODE_CLONED, "a", "apple", name, clonedName)); in testUserDataHandlerNotifiedOfDeepClones()
892 expected.add(notification(NODE_CLONED, "b", "banana", name, clonedName)); in testUserDataHandlerNotifiedOfDeepClones()
893 expected.add(notification(NODE_CLONED, "c", "cat", standard, clonedStandard)); in testUserDataHandlerNotifiedOfDeepClones()
894 expected.add(notification(NODE_CLONED, "d", "dog", waffles, clonedWaffles)); in testUserDataHandlerNotifiedOfDeepClones()
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DNodeImpl.java79 return document.cloneOrImportNode(UserDataHandler.NODE_CLONED, this, deep); in cloneNode()